Remove unnecesary call
This commit is contained in:
parent
d2c7f30048
commit
8304d5d060
1 changed files with 1 additions and 1 deletions
|
@ -87,7 +87,7 @@ def main():
|
||||||
module.exit_json(changed=False, name=name, state=state)
|
module.exit_json(changed=False, name=name, state=state)
|
||||||
|
|
||||||
rc, out, err = module.run_command('%s summary | grep %s' % (MONIT, name))
|
rc, out, err = module.run_command('%s summary | grep %s' % (MONIT, name))
|
||||||
running = 'Running'.lower() in out.lower()
|
running = 'running' in out.lower()
|
||||||
|
|
||||||
if running and (state == 'started' or state == 'monitored'):
|
if running and (state == 'started' or state == 'monitored'):
|
||||||
module.exit_json(changed=False, name=name, state=state)
|
module.exit_json(changed=False, name=name, state=state)
|
||||||
|
|
Loading…
Reference in a new issue