Don't update image properties if we're deleting

This commit is contained in:
Monty Taylor 2015-04-01 10:09:09 -04:00 committed by Matt Clay
parent a4e4dbd863
commit 8958deeb02

View file

@ -175,7 +175,7 @@ def main():
ramdisk=module.params['ramdisk'],
**module.params['properties'])
if module.params['state'] == 'absent':
elif module.params['state'] == 'absent':
if not image:
module.exit_json(changed=False, result="success")
else: