purefa_phonehome: implement check mode support (#57585)

pull/60505/head
René Moser 5 years ago committed by ansibot
parent 8923d13537
commit 7a2483c47e

@ -56,6 +56,7 @@ def enable_ph(module, array):
changed = False
if array.get_phonehome()['phonehome'] != 'enabled':
try:
if not module.check_mode:
array.enable_phonehome()
changed = True
except Exception:
@ -68,6 +69,7 @@ def disable_ph(module, array):
changed = False
if array.get_phonehome()['phonehome'] == 'enabled':
try:
if not module.check_mode:
array.disable_phonehome()
changed = True
except Exception:
@ -82,7 +84,7 @@ def main():
))
module = AnsibleModule(argument_spec,
supports_check_mode=False)
supports_check_mode=True)
array = get_system(module)

Loading…
Cancel
Save