2023-12-06 15:18:07 +01:00
---
- name : import a task
hosts : containers
gather_facts : false
2023-12-06 08:37:34 +01:00
tasks :
2023-12-06 16:51:25 +01:00
- include_tasks : stop_containers.yaml
name : Stop Containers
when : inventory_hostname in groups['raspberrypi5']
- name : Pause for 60 seconds
ansible.builtin.pause :
seconds : 60
2023-12-06 15:18:07 +01:00
- include_tasks : sync_container_data.yaml
name : Sync Container Data
- include_tasks : reconfigure_nginx.yaml
name : Reconfigure nginx proxy manager
loop :
- sectorq.eu
- gitlab.sectorq.eu
- ha.sectorq.eu
- mail.sectorq.eu
- pw.sectorq.eu
- semaphore.sectorq.eu
when : inventory_hostname in groups['raspberrypi5']
- include_tasks : reconfigure_heimdall.yaml
name : Reconfigure heimdall
loop :
- Home Assistant
- Nginx Proxy Manager
- Portainer
- Roundcube
when : inventory_hostname in groups['raspberrypi5']
- name : Changing heimdall background
ansible.builtin.shell : sqlite3 /share/docker_data/heimdall/config/www/app.sqlite "UPDATE setting_user SET uservalue = 'backgrounds/TRN2Ydr5dyVAkWvCq4xqR5bQ6iyv5XaKvM1r84sJ.jpg' WHERE user_id = (SELECT id FROM users WHERE username = 'jaydee')"
2023-12-06 08:37:34 +01:00
become : true
2023-12-06 15:18:07 +01:00
when : inventory_hostname in groups['raspberrypi5']
2023-12-06 16:51:25 +01:00
- include_tasks : start_containers.yaml
name : Start Containers
when : inventory_hostname in groups['raspberrypi5']