This contains a lot of changes, including better system configuration for some issues discovered during testing, and minor tweaking for better user experience when doing maintenance
16 lines
356 B
YAML
16 lines
356 B
YAML
---
|
|
- hosts: all
|
|
gather_facts: no
|
|
tasks:
|
|
- name: Add unprovisioned vars
|
|
include_vars:
|
|
file: inventory/vars/unprovisioned.yml
|
|
- name: Wait for hosts
|
|
ansible.builtin.wait_for_connection:
|
|
timeout: 60
|
|
- name: Gathering facts
|
|
setup:
|
|
- name: Provision users
|
|
include_role:
|
|
name: user-provision
|