mirror of
https://github.com/rocky-linux/infrastructure
synced 2024-11-13 01:01:25 +00:00
14 lines
270 B
YAML
14 lines
270 B
YAML
---
|
|
# Creates the first server for an IPA infrastructure
|
|
# Variables for the infrastructure are in inventory/ipainventory
|
|
- name: Configure IPA server
|
|
hosts: ipaserver
|
|
become: true
|
|
vars_files:
|
|
- vars/encpass.yml
|
|
|
|
roles:
|
|
- role: ipaserver
|
|
state: present
|
|
|