ipaserver_setup_custodia: options.promote needs to be set

The use of custodiainstance.get_custodia_instance requires that
options.promote exists. As this is a server installation, promote
is set to False.
This commit is contained in:
Thomas Woerner
2018-11-22 16:29:34 +01:00
parent 20d25d0d43
commit 36c7e0e122

View File

@@ -70,6 +70,7 @@ def main():
options.realm_name = ansible_module.params.get('realm')
options.host_name = ansible_module.params.get('hostname')
options.setup_ca = ansible_module.params.get('setup_ca')
options.promote = False
# init ##################################################################