mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-10 02:41:30 +00:00
status function was called twice
This commit is contained in:
committed by
Matt Clay
parent
83667961bb
commit
7817b69a1f
@@ -86,7 +86,8 @@ def main():
|
||||
module.run_command('%s %s %s' % (MONIT, command, name), check_rc=True)
|
||||
return status()
|
||||
|
||||
present = status() != ''
|
||||
process_status = status()
|
||||
present = process_status != ''
|
||||
|
||||
if not present and not state == 'present':
|
||||
module.fail_json(msg='%s process not presently configured with monit' % name, name=name, state=state)
|
||||
@@ -102,7 +103,7 @@ def main():
|
||||
module.exit_json(changed=True, name=name, state=state)
|
||||
module.exit_json(changed=False, name=name, state=state)
|
||||
|
||||
running = 'running' in status()
|
||||
running = 'running' in process_status
|
||||
|
||||
if running and state in ['started', 'monitored']:
|
||||
module.exit_json(changed=False, name=name, state=state)
|
||||
|
||||
Reference in New Issue
Block a user