blob: 7c7e60fb62853820c9b45ea9fe298069300fd280 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
- 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
|