fix ansible_managed handling
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Robert Kaussow 2019-08-27 08:51:37 +02:00
parent a3006fe073
commit a17324b935
2 changed files with 14 additions and 13 deletions

View File

@ -32,14 +32,16 @@ mosquitto_acl: []
# mosquitto_acl:
# - name: iot
# user: admin
# acl_base: topic # (topic|pattern, defaults to topic)
# acl_topic: "#"
# acl_policy: readwrite
# acls:
# - acl_base: topic # (topic|pattern, defaults to topic)
# acl_topic: "#"
# acl_policy: readwrite
# - name: readonly_iot
# user: user1
# acl_base: topic
# acl_topic: my/devices
# acl_policy: readwrite
# acls:
# - acl_base: topic
# acl_topic: my/devices
# acl_policy: readwrite
mosquitto_tls_enabled: False
mosquitto_tls_ciphers:

View File

@ -1,11 +1,10 @@
# {{ ansible_managed }}
{% for key, value in mosquitto_acl.iteritems() %}
{% if not key == "all" %}
user {{ key }}
{{ ansible_managed | comment }}
{% for item in mosquitto_acl %}
{% if not item.name == "all" %}
user {{ item.name }}
{% endif %}
{% for item in value %}
{{ item.acl_base if item.acl_base is defined else 'topic' }} {{ item.acl_policy }} {{ item.acl_topic }}
{% for acl in item.acls %}
{{ acl.acl_base if acl.acl_base is defined else 'topic' }} {{ acl.acl_policy }} {{ acl.acl_topic }}
{% endfor %}
{% endfor %}