mirror of
https://github.com/freeipa/ansible-freeipa.git
synced 2026-06-10 10:45:55 +00:00
ipaserver role by default tries to configure firewalld but it didn't check if firewalld related packages were installed. Similar to DNS and trust to AD features, install firewalld-related packages before trying to configure firewalld. Additionally, enable and start firewalld.service because otherwise firewall-cmd cannot communicate with firewalld itself (it is not starting on demand). If and administrator considers not to use firewalld, a default for ipaserver_setup_firewalld variable has to be set to 'no'. Fixes: https://github.com/freeipa/ansible-freeipa/issues/116
7 lines
232 B
YAML
7 lines
232 B
YAML
# defaults file for ipaserver
|
|
# vars/RedHat-8.yml
|
|
ipaserver_packages: [ "@idm:DL1/server" ]
|
|
ipaserver_packages_dns: [ "@idm:DL1/dns" ]
|
|
ipaserver_packages_adtrust: [ "@idm:DL1/adtrust" ]
|
|
ipaserver_packages_firewalld: [ "firewalld" ]
|