mirror of
https://github.com/freeipa/ansible-freeipa.git
synced 2026-05-14 21:42:17 +00:00
ipaserver: Add support for pki_config_override
The addtion is not oly adding the config setting, but also fixing the deployment without the setting as functions and methods have been changed for pki_config_override. There is a new setting for the ipaserver role: ipaserver_pki_config_override
This commit is contained in:
@@ -58,6 +58,7 @@ def main():
|
||||
setup_ca=dict(required=True, type='bool'),
|
||||
setup_kra=dict(required=True, type='bool'),
|
||||
realm=dict(required=True),
|
||||
pki_config_override=dict(required=False),
|
||||
),
|
||||
)
|
||||
|
||||
@@ -71,6 +72,8 @@ def main():
|
||||
options.setup_ca = ansible_module.params.get('setup_ca')
|
||||
options.setup_kra = ansible_module.params.get('setup_kra')
|
||||
options.realm_name = ansible_module.params.get('realm')
|
||||
options.pki_config_override = ansible_module.params.get(
|
||||
'pki_config_override')
|
||||
options.promote = False # first master, no promotion
|
||||
|
||||
# init ##########################################################
|
||||
|
||||
Reference in New Issue
Block a user