forked from CCCHH/ansible-infra
		
	Move become: true into zigbee2mqtt role Remove become: true from deploy_public_reverse_proxy playbook Remove become: true from deploy_dokuwiki playbook Move become: true from deploy_audio_pi and deploy_light playbooks into roles Remove become: true from deploy_keycloak playbook Move become: true from deploy_automation playbook to mosquitto role
		
			
				
	
	
		
			33 lines
		
	
	
	
		
			828 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
	
		
			828 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| ---
 | |
| - name: Ensure mosquitto is installed
 | |
|   become: true
 | |
|   ansible.builtin.apt:
 | |
|     name: mosquitto
 | |
| 
 | |
| - name: Ensure main configuraton file is deployed
 | |
|   become: true
 | |
|   ansible.builtin.copy:
 | |
|     content: "{{ mosquitto__mosquitto_conf_content }}"
 | |
|     dest: /etc/mosquitto/mosquitto.conf
 | |
|     mode: "644"
 | |
|     owner: root
 | |
|     group: root
 | |
|   notify: Restart mosquitto
 | |
| 
 | |
| - name: Ensure all additional configuraton files are deployed
 | |
|   become: true
 | |
|   ansible.builtin.copy:
 | |
|     content: "{{ item.content }}"
 | |
|     dest: /etc/mosquitto/conf.d/{{ item.name }}.conf
 | |
|     mode: "644"
 | |
|     owner: root
 | |
|     group: root
 | |
|   loop: "{{ mosquitto__configs }}"
 | |
|   notify: Restart mosquitto
 | |
| 
 | |
| - name: Ensure mosquitto service is enabled and started
 | |
|   become: true
 | |
|   ansible.builtin.systemd:
 | |
|     service: mosquitto.service
 | |
|     enabled: true
 | |
|     state: started
 |