purefa_phonehome: implement check mode support (#57585)
This commit is contained in:
parent
8923d13537
commit
7a2483c47e
1 changed files with 5 additions and 3 deletions
|
@ -56,6 +56,7 @@ def enable_ph(module, array):
|
||||||
changed = False
|
changed = False
|
||||||
if array.get_phonehome()['phonehome'] != 'enabled':
|
if array.get_phonehome()['phonehome'] != 'enabled':
|
||||||
try:
|
try:
|
||||||
|
if not module.check_mode:
|
||||||
array.enable_phonehome()
|
array.enable_phonehome()
|
||||||
changed = True
|
changed = True
|
||||||
except Exception:
|
except Exception:
|
||||||
|
@ -68,6 +69,7 @@ def disable_ph(module, array):
|
||||||
changed = False
|
changed = False
|
||||||
if array.get_phonehome()['phonehome'] == 'enabled':
|
if array.get_phonehome()['phonehome'] == 'enabled':
|
||||||
try:
|
try:
|
||||||
|
if not module.check_mode:
|
||||||
array.disable_phonehome()
|
array.disable_phonehome()
|
||||||
changed = True
|
changed = True
|
||||||
except Exception:
|
except Exception:
|
||||||
|
@ -82,7 +84,7 @@ def main():
|
||||||
))
|
))
|
||||||
|
|
||||||
module = AnsibleModule(argument_spec,
|
module = AnsibleModule(argument_spec,
|
||||||
supports_check_mode=False)
|
supports_check_mode=True)
|
||||||
|
|
||||||
array = get_system(module)
|
array = get_system(module)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue