blob: 84de0c4f948299904fea96ed8c1d4d3e0cb5237f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
---
- 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"]
pre_tasks:
- name: "Update package cache"
become: true
ansible.builtin.package:
update_cache: true
tags: ["required_for_boot"]
|