Move become: true into esphome role
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
This commit is contained in:
		
					parent
					
						
							
								b56ca3899d
							
						
					
				
			
			
				commit
				
					
						33d1cfca1f
					
				
			
		
					 24 changed files with 119 additions and 20 deletions
				
			
		|  | @ -3,22 +3,30 @@ | |||
|   ansible.builtin.fail: | ||||
|     msg: "Can only add apt repositories on Debian-based systems!" | ||||
|   when: ansible_facts.os_family != "Debian" | ||||
| 
 | ||||
| - name: Install required apt packages for adding an apt repository | ||||
|   become: true | ||||
|   ansible.builtin.apt: | ||||
|     name: | ||||
|       - ca-certificates | ||||
|       - gnupg | ||||
| 
 | ||||
| - name: Install apt-transport-https if https repository | ||||
|   become: true | ||||
|   ansible.builtin.apt: | ||||
|     name: apt-transport-https | ||||
|   when: add_apt_repository__https_repo | ||||
| 
 | ||||
| - name: Add repository signing key to keychain | ||||
|   become: true | ||||
|   when: add_apt_repository__keyring_url is defined and add_apt_repository__keyring_path is defined | ||||
|   ansible.builtin.apt_key: | ||||
|     url: "{{ add_apt_repository__keyring_url }}" | ||||
|     keyring: "{{ add_apt_repository__keyring_path }}" | ||||
|     state: present | ||||
| 
 | ||||
| - name: Add repository and update cache | ||||
|   become: true | ||||
|   ansible.builtin.apt_repository: | ||||
|     repo: "{{ add_apt_repository__repo }}" | ||||
|     filename: "{{ add_apt_repository__filename }}" | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue