ansible-play-baseos/baseos.yml
Chris Hammer 2994a8f849 its been a while since i've worked on this
and it seems there were many changes left
uncommitted. i have no idea what state this is in
but we will refactor or start over from this point.
2023-12-08 01:09:54 -05:00

24 lines
329 B
YAML

---
- name: Deploy a standardized base configuration
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 }}"
...