add missing vars files

This commit is contained in:
Louis Abel 2023-04-17 22:51:55 -07:00
parent 3926329c77
commit 7040c710d1
Signed by: label
GPG Key ID: 6735C0E1BD65D048
4 changed files with 9 additions and 1 deletions

View File

@ -1,2 +1,6 @@
---
# Handlers
- name: reload_networkmanager
ansible.builtin.service:
name: NetworkManager
state: reloaded

View File

@ -4,6 +4,8 @@
- name: Configure IPA server
hosts: ipareplica
become: true
vars_files:
- vars/ipa/ipareplica.yml
# This is to try to avoid the handler issue in pre/post tasks
handlers:

View File

@ -9,6 +9,8 @@
- name: Configure IPA server
hosts: ipaserver
become: true
vars_files:
- vars/ipa/ipaserver.yml
# This is to try to avoid the handler issue in pre/post tasks
handlers:

View File

@ -11,6 +11,6 @@ ipaserver_setup_firewalld: true
ipaclient_no_ntp: true
ipaclient_mkhomedir: true
ipaserver_no_hbac_allow: true
ipaserver_reverse_zones: ["32.10.in-addr.arpa."]
ipaserver_reverse_zones: ["32.10.in-addr.arpa.", "61.10.in-addr.arpa."]
ipatype: server
...