summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeremy Cline <jeremy@jcline.org>2017-09-12 19:02:26 +0000
committerJeremy Cline <jeremy@jcline.org>2017-09-12 19:02:26 +0000
commita4a7df0794cd8a546deca41fd41f37deb5a1cc8a (patch)
tree9b157be05051f0e65b3708f4a637b6308d073c81
parente65dc733c85d35df58d8adab6a22ac78cfdfd70a (diff)
downloadansible-a4a7df0794cd8a546deca41fd41f37deb5a1cc8a.tar.gz
ansible-a4a7df0794cd8a546deca41fd41f37deb5a1cc8a.tar.xz
ansible-a4a7df0794cd8a546deca41fd41f37deb5a1cc8a.zip
Remove some weird - characters
Signed-off-by: Jeremy Cline <jeremy@jcline.org>
-rw-r--r--roles/notifs/backend/templates/fmn.consumer.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/roles/notifs/backend/templates/fmn.consumer.py b/roles/notifs/backend/templates/fmn.consumer.py
index a52337b38..ff83add2e 100644
--- a/roles/notifs/backend/templates/fmn.consumer.py
+++ b/roles/notifs/backend/templates/fmn.consumer.py
@@ -130,9 +130,9 @@ config = {
## Backend stuff ##
- {% if env == 'staging' -%}
+ {% if env == 'staging' %}
"fmn.backends": ["email", "irc", "android"],
- {% else -%}
+ {% else %}
"fmn.backends": ["email", "irc"], # android is disabled.
{% endif %}
@@ -144,11 +144,11 @@ config = {
"fmn.irc.network": "irc.freenode.net",
"fmn.irc.nickname": ircnick,
"fmn.irc.timeout": 120,
- {% if env == 'staging' -%}
+ {% if env == 'staging' %}
"fmn.irc.port": 6697,
"fmn.irc.use_ssl": True,
"fmn.irc.nickserv_pass": "{{ fedora-notifstg-freenode-pass }}",
- {% else -%}
+ {% else %}
"fmn.irc.port": 6667,
{% endif %}