1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Bug fix for purefb_fs to stop incorrect filesystem eradication (#47561)

This commit is contained in:
Simon Dodsley 2018-10-24 09:42:42 -04:00 committed by ansibot
parent ecdcb6a09f
commit 4420e4c3cd

View file

@ -329,7 +329,7 @@ def main():
modify_fs(module, blade)
elif state == 'absent' and fs and not fs.destroyed:
delete_fs(module, blade)
elif state == 'absent' and fs and fs.destroyed:
elif state == 'absent' and fs and fs.destroyed and module.params['eradicate']:
eradicate_fs(module, blade)
elif state == 'absent' and not fs:
module.exit_json(changed=False)