Update cs_volume module to fix typo on force attribute (#2592)

fixes #2590
pull/18777/head
lorijoan 8 years ago committed by Matt Clay
parent d8311b95e8
commit d0c2db9c5b

@ -389,7 +389,7 @@ class AnsibleCloudStackVolume(AnsibleCloudStack):
volume = self.get_volume()
if volume:
if 'attached' in volume and not self.module.param.get('force'):
if 'attached' in volume and not self.module.params.get('force'):
self.module.fail_json(msg="Volume '%s' is attached, use force=true for detaching and removing the volume." % volume.get('name'))
self.result['changed'] = True

Loading…
Cancel
Save