2017-12-18 08:52:02 +00:00
|
|
|
---
|
2018-11-05 19:15:12 +00:00
|
|
|
- name: Check if password file '{{ mosquitto_password_auth_file }}' exists
|
|
|
|
stat:
|
|
|
|
path: "{{ mosquitto_password_auth_file }}"
|
|
|
|
register: __mosquitto_passwd
|
|
|
|
become: True
|
|
|
|
become_user: root
|
2017-12-18 08:52:02 +00:00
|
|
|
|
2018-11-05 19:15:12 +00:00
|
|
|
- name: Create password file if not exist
|
|
|
|
file:
|
|
|
|
path: "{{ mosquitto_password_auth_file }}"
|
|
|
|
mode: 0600
|
|
|
|
state: touch
|
2018-11-04 23:31:54 +00:00
|
|
|
become: True
|
|
|
|
become_user: root
|
2018-11-05 19:15:12 +00:00
|
|
|
when: not __mosquitto_passwd.stat.exists
|
|
|
|
|
2018-11-05 19:39:18 +00:00
|
|
|
# TODO: ugly workaround, move this to a custom module
|
2018-11-07 19:44:06 +00:00
|
|
|
- block:
|
|
|
|
- name: Add users to password file
|
|
|
|
shell: "mosquitto_passwd -b {{ mosquitto_password_auth_file }} {{ item.key }} {{ item.value.password }}"
|
|
|
|
with_dict: "{{ mosquitto_password_auth_users | default('{}') }}"
|
|
|
|
when: item.value.state == "present"
|
|
|
|
changed_when: False
|
|
|
|
no_log: True
|
|
|
|
|
|
|
|
- name: Remove unnecessary users from password file
|
|
|
|
shell: "mosquitto_passwd -D {{ mosquitto_password_auth_file }} {{ item.key }}"
|
|
|
|
with_dict: "{{ mosquitto_password_auth_users | default('{}') }}"
|
|
|
|
when: item.value.state == "absent"
|
|
|
|
changed_when: False
|
|
|
|
no_log: True
|
2018-11-05 19:39:18 +00:00
|
|
|
|
2018-11-07 19:44:06 +00:00
|
|
|
- name: Create acl file at '{{ mosquitto_acl_file }}'
|
|
|
|
template:
|
|
|
|
src: "etc/mosquitto/acl.j2"
|
|
|
|
dest: "{{ mosquitto_acl_file }}"
|
|
|
|
owner: root
|
|
|
|
group: root
|
|
|
|
mode: 0600
|
|
|
|
with_dict: "{{ mosquitto_password_auth_users | default('{}') }}"
|
|
|
|
when:
|
|
|
|
- mosquitto_acl_enabled
|
|
|
|
- mosquitto_acl
|
2018-11-05 19:39:18 +00:00
|
|
|
become: True
|
|
|
|
become_user: root
|