-
Notifications
You must be signed in to change notification settings - Fork 1
/
site.yml
30 lines (25 loc) · 956 Bytes
/
site.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
- name: Import snapshot-restore playbook
ansible.builtin.import_playbook: snapshot-restore.yml
- name: Import stay-awake playbook
ansible.builtin.import_playbook: power-block.yml
- name: Site Playbook # using only one playbook for all hosts to profit from Ansible's strategy "free"
hosts: all
become: true
tasks:
- name: "Role: auto_update"
ansible.builtin.include_role:
name: auto_update
when: "'auto_update' in group_names"
- name: "Role: common"
ansible.builtin.include_role:
name: common
- name: "Role: vscodium"
ansible.builtin.include_role:
name: vscodium
when: "'vscodium' in group_names"
- name: Import sleep-allowed playbook
ansible.builtin.import_playbook: power-unblock.yml
- name: Import snapshot-create playbook
ansible.builtin.import_playbook: snapshot-create.yml
- name: Import pixelflut 2024 playbook
ansible.builtin.import_playbook: pixelflut-2024.yml