16 lines
319 B
YAML
16 lines
319 B
YAML
|
- name: Update system
|
||
|
ansible.builtin.include_tasks:
|
||
|
file: update.yml
|
||
|
|
||
|
- name: Install packages
|
||
|
ansible.builtin.include_tasks:
|
||
|
file: packages.yml
|
||
|
|
||
|
- name: Set hostname
|
||
|
ansible.builtin.include_tasks:
|
||
|
file: hostnames.yml
|
||
|
|
||
|
- name: Configure network
|
||
|
ansible.builtin.include_tasks:
|
||
|
file: network.yml
|