]> git.immae.eu Git - github/fretlink/ansible-rabbitmq.git/commitdiff
Merge pull request #29 from paulrbr-fl/fix-debian-package-install
authorLarry Smith Jr <mrlesmithjr@gmail.com>
Tue, 3 Dec 2019 14:05:00 +0000 (09:05 -0500)
committerGitHub <noreply@github.com>
Tue, 3 Dec 2019 14:05:00 +0000 (09:05 -0500)
debian: fix the use of 'rabbitmq_debian_version' variable

.travis.yml
templates/etc/rabbitmq/rabbitmq-env.conf.j2

index a0031243d52ed6b7dedc71edf485175d5c191bfd..ef0435c0e49298b69d45759fe58fe91305c041c1 100644 (file)
@@ -1,6 +1,9 @@
 ---
 language: python
-python: "2.7"
+matrix:
+  include:
+    - python: '3.6'
+    - python: '2.7'
 
 # Use the new container infrastructure
 sudo: required
index 8eff6f38c360f2676c5f7777144cbc9c0ac8ca58..60dfa328ae88136da0cc32bd864c59314dd63b63 100644 (file)
@@ -1,6 +1,6 @@
 # {{ ansible_managed }}
 # Note that the variables do not have the RABBITMQ_ prefix.
 #
-{% for key,value in rabbitmq_env_config.iteritems() %}
+{% for key, value in rabbitmq_env_config.items() %}
 {{ key }}={{ value }}
 {% endfor %}