Introduce everything playbook, which runs all non-initial setup roles

It runs the maintenance playbook and then all other non-initial setup
roles, which aren't covered by the maintenance playbook.
This commit is contained in:
Julian Schacher
2024-01-31 16:37:47 +01:00
parent 298990d0a9
commit 016f821c54
2 changed files with 10 additions and 0 deletions

View File

@@ -10,3 +10,6 @@ all:
Debian_12_Hosts:
hosts:
cit-ansible-test:
Docker_Hosts:
hosts:
cit-ansible-test:

View File

@@ -0,0 +1,7 @@
- name: Run maintenance playbook
ansible.builtin.import_playbook: maintenance.yaml
- name: Ensure Docker for Docker_Hosts
hosts: Docker_Hosts
roles:
- docker