initial project commit

This commit is contained in:
2022-03-15 12:51:21 -04:00
commit 8b522e0af0
5 changed files with 65 additions and 0 deletions

23
baseos.yml Normal file
View File

@ -0,0 +1,23 @@
---
- name: Provisions hosts using the jchristianh.baseos Ansible collection
hosts: all
become: yes
gather_facts: yes
collections:
- jchristianh.baseos
vars_files:
- vars/baseos_vars.yml
tasks:
- name: Include relevant role(s)
include_role:
name: "{{ item }}"
loop: "{{ baseos_include_roles }}"
...