Skip to content
Snippets Groups Projects
Commit 2b2fe198 authored by Thomas Woerner's avatar Thomas Woerner
Browse files

ipaserver_prepare: Initialize options._subject_base and options._ca_subject

These are set by ca.install_check, but flake8 does not know about this.
parent 186d2373
No related branches found
No related tags found
Loading
......@@ -142,6 +142,12 @@ def main():
ansible_module._ansible_debug = True
ansible_log = AnsibleModuleLog(ansible_module)
# initialize return values for flake ############################
# These are set by ca.install_check
options._subject_base = None
options._ca_subject = None
# set values ####################################################
options.force = ansible_module.params.get('force')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment