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.
24 lines
329 B
YAML
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 }}"
|
|
|
|
|
|
...
|