mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-04 17:53:10 +00:00
Update cs_volume module to fix typo on force attribute (#2592)
fixes #2590
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user