mirror of
https://github.com/iiab/iiab.git
synced 2025-02-13 11:42:08 +00:00
21 lines
560 B
YAML
21 lines
560 B
YAML
- name: Enable & Start 'mosquitto' service
|
|
systemd:
|
|
daemon_reload: yes
|
|
name: mosquitto
|
|
enabled: yes
|
|
state: started
|
|
when: mosquitto_enabled | bool
|
|
|
|
- name: Add 'mosquitto' variable values to {{ iiab_ini_file }}
|
|
ini_file:
|
|
path: "{{ iiab_ini_file }}"
|
|
section: mosquitto
|
|
option: "{{ item.option }}"
|
|
value: "{{ item.value | string }}"
|
|
with_items:
|
|
- option: name
|
|
value: Mosquitto service
|
|
- option: description
|
|
value: Mosquitto service
|
|
- option: mosquitto_enabled
|
|
value: "{{ mosquitto_enabled }}"
|