Merge pull request #1867 from Censio/rhunter-monit-startup
monit startup fix
This commit is contained in:
commit
eab5892944
1 changed files with 2 additions and 3 deletions
|
@ -127,9 +127,8 @@ def main():
|
||||||
module.exit_json(changed=True)
|
module.exit_json(changed=True)
|
||||||
status = run_command('reload')
|
status = run_command('reload')
|
||||||
if status == '':
|
if status == '':
|
||||||
module.fail_json(msg='%s process not configured with monit' % name, name=name, state=state)
|
wait_for_monit_to_stop_pending()
|
||||||
else:
|
module.exit_json(changed=True, name=name, state=state)
|
||||||
module.exit_json(changed=True, name=name, state=state)
|
|
||||||
module.exit_json(changed=False, name=name, state=state)
|
module.exit_json(changed=False, name=name, state=state)
|
||||||
|
|
||||||
wait_for_monit_to_stop_pending()
|
wait_for_monit_to_stop_pending()
|
||||||
|
|
Loading…
Reference in a new issue