Merge pull request #1408 from resmo/fix/next/cs_volume
[next] cloudstack: cs_volume: simplify detach on state=absent
This commit is contained in:
commit
1ae3b6a020
1 changed files with 3 additions and 6 deletions
|
@ -392,10 +392,7 @@ class AnsibleCloudStackVolume(AnsibleCloudStack):
|
|||
volume = self.get_volume()
|
||||
|
||||
if volume:
|
||||
if 'attached' in volume:
|
||||
if self.module.param.get('force'):
|
||||
self.detached_volume()
|
||||
else:
|
||||
if 'attached' in volume and not self.module.param.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
|
||||
|
@ -403,7 +400,7 @@ class AnsibleCloudStackVolume(AnsibleCloudStack):
|
|||
volume = self.detached_volume()
|
||||
|
||||
res = self.cs.deleteVolume(id=volume['id'])
|
||||
if 'errortext' in volume:
|
||||
if 'errortext' in res:
|
||||
self.module.fail_json(msg="Failed: '%s'" % res['errortext'])
|
||||
poll_async = self.module.params.get('poll_async')
|
||||
if poll_async:
|
||||
|
|
Loading…
Reference in a new issue