Initial commit

This commit is contained in:
Pin
2022-11-13 16:36:08 -05:00
commit f0d1bb4b06
12 changed files with 2100 additions and 0 deletions

9
tasks/main.yml Normal file
View File

@@ -0,0 +1,9 @@
---
- name: Import Master Tasks
include_tasks: master.yml
when: "'master' in group_names"
- name: Import Nodes Tasks
include_tasks: node.yml
when: "'node' in group_names"
...