2018-11-07 19:44:06 +00:00
|
|
|
# {{ ansible_managed }}
|
|
|
|
|
2018-11-07 20:32:12 +00:00
|
|
|
{% for acl in mosquitto_acl %}
|
|
|
|
{% if not acl.user == "all" %}
|
|
|
|
{{ acl.user }}
|
2018-11-07 19:44:06 +00:00
|
|
|
{% endif %}
|
2018-11-07 20:32:12 +00:00
|
|
|
{{ acl.acl_base if acl.acl_base is defined else 'topic' }} {{ acl.acl_policy }} {{ acl.acl_topic }}
|
2018-11-07 19:44:06 +00:00
|
|
|
{% endfor %}
|