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
		
			
				
	
	
		
			23 lines
		
	
	
	
		
			577 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
	
		
			577 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| ---
 | |
| - name: Remove dtparam=audio=on
 | |
|   become: true
 | |
|   ansible.builtin.lineinfile:
 | |
|     line: dtparam=audio=on
 | |
|     dest: /boot/config.txt
 | |
|     state: absent
 | |
|   notify: Restart system
 | |
| 
 | |
| - name: Set audio=off for dtoverlay=vc4-kms-v3d
 | |
|   become: true
 | |
|   ansible.builtin.lineinfile:
 | |
|     regexp: ^dtoverlay=vc4-kms-v3d
 | |
|     line: dtoverlay=vc4-kms-v3d,audio=off
 | |
|     dest: /boot/config.txt
 | |
|   notify: Restart system
 | |
| 
 | |
| - name: Add hifiberry dtoverlay
 | |
|   become: true
 | |
|   ansible.builtin.lineinfile:
 | |
|     line: "dtoverlay={{ hifiberry__device }}"
 | |
|     dest: /boot/config.txt
 | |
|   notify: Restart system
 |