Initial Commit

This commit is contained in:
Christer Warén
2024-06-18 21:34:48 +03:00
commit 5f802adeb6
12 changed files with 181 additions and 0 deletions

25
tasks.yml Normal file
View File

@ -0,0 +1,25 @@
---
- name: "Tasks"
hosts: all
module_defaults:
ansible.builtin.gather_facts:
gather_timeout: 10
tasks:
- name: "Installer"
import_tasks: tasks/installer.yml
tags:
- installer
- never
- name: "Maintenance"
import_tasks: tasks/maintenance.yml
tags:
- maintenance
- never
- name: "Deployer"
import_tasks: tasks/deployer.yml
tags:
- deployer
- never