Fixing a typo in the monit module (status and not status())

This commit is contained in:
James Cammarata 2014-05-08 16:46:32 -05:00
parent bd9d8e8207
commit 8db481d8de

View file

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