summaryrefslogtreecommitdiffstats
path: root/site.yml
blob: 9b03e6dfd3954d8cfcdebdedf348c9495c8070d5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
---
- name: Distro bootstrap configure
  gather_facts: true
  hosts:
    - homelab
    - chroot
  roles:
    - role: "network"
      tags: ["required_for_boot"]
    - role: "user"
      tags: ["required_for_boot"]
    - role: "ssh"
      tags: ["required_for_boot"]
    - role: "settings"

  pre_tasks:
    - name: "Update package cache"
      become: true
      ansible.builtin.package:
        update_cache: true
      tags: ["required_for_boot"]