2023-07-30 06:57:30 +02:00
|
|
|
---
|
|
|
|
- name: engelsystem_specific_pre_tasks
|
|
|
|
ansible.builtin.import_playbook: engelsystem_specific_pre_tasks.yaml
|
|
|
|
|
|
|
|
- name: Ensure SSH server config deployment on ssh_server_config_hosts
|
|
|
|
hosts: ssh_server_config_hosts
|
|
|
|
roles:
|
|
|
|
- deploy_ssh_server_config
|
|
|
|
|
2023-11-11 00:23:20 +01:00
|
|
|
- name: Ensure deployment of infrastructure authorized keys
|
|
|
|
hosts: infrastructure_authorized_keys_hosts
|
|
|
|
roles:
|
|
|
|
- infrastructure_authorized_keys
|
|
|
|
|
2023-08-05 18:59:58 +02:00
|
|
|
- name: Ensure Nextcloud config
|
|
|
|
hosts: nextcloud_hosts
|
|
|
|
roles:
|
|
|
|
- nextcloud
|
|
|
|
|
2023-07-30 06:57:30 +02:00
|
|
|
- name: Ensure HiFiBerry deployment on hifiberry_hosts
|
|
|
|
hosts: hifiberry_hosts
|
|
|
|
roles:
|
|
|
|
- hifiberry
|
|
|
|
|
|
|
|
- name: Ensure bluetooth audio sink deployment on bluetooth_audio_sink_hosts
|
|
|
|
hosts: bluetooth_audio_sink_hosts
|
|
|
|
roles:
|
|
|
|
- bluetooth_audio_sink
|
|
|
|
|
|
|
|
- name: Ensure shairport sync deployment on shairport_sync_hosts
|
|
|
|
hosts: shairport_sync_hosts
|
|
|
|
roles:
|
|
|
|
- shairport_sync
|
|
|
|
|
|
|
|
- name: Ensure ola deployment on ola_hosts
|
|
|
|
hosts: ola_hosts
|
|
|
|
roles:
|
|
|
|
- ola
|
|
|
|
|
|
|
|
- name: Ensure foobazdmx deployment on foobazdmx_hosts
|
|
|
|
hosts: foobazdmx_hosts
|
|
|
|
roles:
|
|
|
|
- foobazdmx
|
|
|
|
|
|
|
|
- name: Ensure Mosquitto MQTT broker deployment on mosquitto_hosts
|
|
|
|
hosts: mosquitto_hosts
|
|
|
|
roles:
|
|
|
|
- mosquitto
|
|
|
|
|
|
|
|
- name: Ensure Zigbee2MQTT deployment on zigbee2mqtt_hosts
|
|
|
|
hosts: zigbee2mqtt_hosts
|
|
|
|
roles:
|
|
|
|
- zigbee2mqtt
|
|
|
|
|
2023-05-11 20:19:14 +02:00
|
|
|
- name: Ensure Dokuwiki config
|
|
|
|
hosts: wiki
|
|
|
|
roles:
|
|
|
|
- dokuwiki
|
|
|
|
|
2023-07-30 06:57:30 +02:00
|
|
|
- name: Ensure certificate deployment on cert_hosts
|
|
|
|
hosts: cert_hosts
|
|
|
|
roles:
|
|
|
|
- cert
|
|
|
|
|
2023-08-03 04:15:03 +02:00
|
|
|
- name: Ensure NGINX deployment on nginx_hosts, which are also public_reverse_proxy_hosts, before certbot role runs
|
|
|
|
hosts: nginx_hosts:&public_reverse_proxy_hosts
|
|
|
|
roles:
|
|
|
|
- nginx
|
|
|
|
|
2023-08-02 22:53:37 +02:00
|
|
|
- name: Ensure certbot and certificate deployment on certbot_hosts
|
|
|
|
hosts: certbot_hosts
|
|
|
|
roles:
|
|
|
|
- certbot
|
|
|
|
|
2023-07-30 06:57:30 +02:00
|
|
|
- name: Ensure Docker Compose deployment on docker_compose_hosts
|
|
|
|
hosts: docker_compose_hosts
|
|
|
|
roles:
|
|
|
|
- docker_compose
|
|
|
|
|
|
|
|
- name: Ensure NGINX deployment on nginx_hosts
|
2023-08-03 04:15:03 +02:00
|
|
|
hosts: nginx_hosts:!public_reverse_proxy_hosts
|
2023-07-30 06:57:30 +02:00
|
|
|
roles:
|
|
|
|
- nginx
|
2024-08-11 20:49:21 +02:00
|
|
|
|
|
|
|
- name: Configure unattended upgrades
|
|
|
|
hosts: all
|
|
|
|
become: true
|
|
|
|
roles:
|
2024-09-02 20:44:55 +02:00
|
|
|
- role: debops.debops.unattended_upgrades
|
|
|
|
vars:
|
|
|
|
unattended_upgrades__origins:
|
|
|
|
- "o=${distro_id},n=${distro_codename}"
|
|
|
|
- "o=Docker,n=${distro_codename}"
|
|
|
|
- "o=nginx,n=${distro_codename}"
|