Merge pull request #1548 from vvanholl/devel
Do not fail when action is delete and volume is not present
This commit is contained in:
commit
14f0ad07ab
1 changed files with 1 additions and 1 deletions
|
@ -433,7 +433,7 @@ def main():
|
|||
else:
|
||||
module.fail_json(msg='failed to create volume %s' % volume_name)
|
||||
|
||||
if volume_name not in volumes:
|
||||
if action != 'delete' and volume_name not in volumes:
|
||||
module.fail_json(msg='volume not found %s' % volume_name)
|
||||
|
||||
if action == 'started':
|
||||
|
|
Loading…
Add table
Reference in a new issue