aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorPaul Bonaud <paul.bonaud@fretlink.com>2019-11-21 14:04:58 +0100
committerPaul Bonaud <paul.bonaud@fretlink.com>2019-11-21 14:04:58 +0100
commitba4c3bb02c37363ef0378bced59ff92daf04af14 (patch)
tree291ad9ce88d693e6a0ff1f19450b07b0d503d88c
parentf5ef298d23b154e0dbf2a8c0718498a878dea0f8 (diff)
downloadansible-rabbitmq-ba4c3bb02c37363ef0378bced59ff92daf04af14.tar.gz
ansible-rabbitmq-ba4c3bb02c37363ef0378bced59ff92daf04af14.tar.zst
ansible-rabbitmq-ba4c3bb02c37363ef0378bced59ff92daf04af14.zip
compatibility: make the role compatible with Python 3
-rw-r--r--templates/etc/rabbitmq/rabbitmq-env.conf.j22
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/etc/rabbitmq/rabbitmq-env.conf.j2 b/templates/etc/rabbitmq/rabbitmq-env.conf.j2
index 8eff6f3..60dfa32 100644
--- a/templates/etc/rabbitmq/rabbitmq-env.conf.j2
+++ b/templates/etc/rabbitmq/rabbitmq-env.conf.j2
@@ -1,6 +1,6 @@
1# {{ ansible_managed }} 1# {{ ansible_managed }}
2# Note that the variables do not have the RABBITMQ_ prefix. 2# Note that the variables do not have the RABBITMQ_ prefix.
3# 3#
4{% for key,value in rabbitmq_env_config.iteritems() %} 4{% for key, value in rabbitmq_env_config.items() %}
5{{ key }}={{ value }} 5{{ key }}={{ value }}
6{% endfor %} 6{% endfor %}