blob: 4790ce951f2f9eb88c9fb9a1cbd2727ca2d04ee6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
- name: setup server01
hosts: server01
gather_facts: true
vars_files:
- vars/main.yaml
tasks:
- import_tasks: tasks/preflight.yaml
- import_tasks: tasks/pve_setup.yaml
- import_tasks: tasks/pve_configure.yaml
- import_tasks: tasks/harden.yaml
- import_tasks: tasks/wg_setup.yaml
- import_tasks: tasks/post_setup.yaml
|