Fixes bug where state=absent did not work

This commit is contained in:
Jonathan Mainguy 2015-04-19 15:29:30 -04:00
parent 118c79e335
commit ae34395f01

View file

@ -356,7 +356,9 @@ def main():
# do the work! # do the work!
if action == 'absent': if action == 'absent':
if volume_name in volumes: if volume_name in volumes:
run_gluster([ 'volume', 'delete', name ]) if volumes[volume_name]['status'].lower() != 'stopped':
stop_volume(volume_name)
run_gluster_yes([ 'volume', 'delete', volume_name ])
changed = True changed = True
if action == 'present': if action == 'present':