2022-05-25 23:24:56 +00:00
|
|
|
---
|
|
|
|
- hosts: all
|
2024-08-04 17:31:05 +00:00
|
|
|
gather_facts: no
|
2023-03-06 14:03:09 +00:00
|
|
|
tasks:
|
2024-08-04 17:31:05 +00:00
|
|
|
- name: Add unprovisioned vars
|
|
|
|
include_vars:
|
|
|
|
file: inventory/vars/unprovisioned.yaml
|
|
|
|
- name: Wait for hosts
|
|
|
|
ansible.builtin.wait_for_connection:
|
|
|
|
timeout: 60
|
|
|
|
- name: Gathering facts
|
|
|
|
setup:
|
|
|
|
- name: Provision users
|
2023-03-06 14:03:09 +00:00
|
|
|
include_role:
|
2024-08-04 17:31:05 +00:00
|
|
|
name: user-provision
|