ansible/playbooks/sync_all.yaml
ladislav.dusa 9cc98053c1 work
2023-12-06 19:45:10 +01:00

59 lines
2.2 KiB
YAML

---
- name: import a task
hosts: containers
gather_facts: false
tasks:
- include_tasks: stop_containers.yaml
name: Stop Containers
when: inventory_hostname in groups['raspberrypi5']
- name: Pause for 60 seconds
ansible.builtin.pause:
seconds: 60
- 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']
- name: Get relevant configs
ansible.builtin.shell: 'egrep -l "# ha.sectorq.eu|# pw.sectorq.eu|# semaphore.sectorq.eu|# sectorq.eu|# gitlab.sectorq.eu|# ha.sectorq.eu" /share/docker_data/nginx/data/nginx/proxy_host/*'
ignore_errors: yes
become: yes
register: result
when: inventory_hostname in groups['raspberrypi5']
- debug:
msg: "{{ result.stdout_lines }}"
when: inventory_hostname in groups['raspberrypi5']
- name: Replace ip
ansible.builtin.lineinfile:
path: "{{ item }}"
regexp: '^\s+set \$server\s+\"\w+.\w+.\w+.\w+\";'
line: " set $server \"192.168.77.238\";"
become: yes
with_items:
- "{{ result.stdout_lines }}"
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')"
become: true
when: inventory_hostname in groups['raspberrypi5']
- include_tasks: start_containers.yaml
name: Start Containers
when: inventory_hostname in groups['raspberrypi5']