fix a problem with status detection after unmonitor command

This commit is contained in:
Lorenzo Luconi Trombacchi 2015-05-12 10:58:47 +02:00 committed by Matt Clay
parent 9ee857180b
commit 83667961bb

View file

@ -119,7 +119,7 @@ def main():
if module.check_mode:
module.exit_json(changed=True)
status = run_command('unmonitor')
if status in ['not monitored']:
if status in ['not monitored'] or 'unmonitor pending' in status:
module.exit_json(changed=True, name=name, state=state)
module.fail_json(msg='%s process not unmonitored' % name, status=status)