Commit 1f2136b6 by Cristobal Rosa

Remove unnecesary call

parent d5cf1257
......@@ -85,7 +85,7 @@ def main():
module.exit_json(changed=False, name=name, state=state)
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'):
module.exit_json(changed=False, name=name, state=state)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment