mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
supervisorctl: Don't try to start a starting program
Starting a "STARTING" program throws ERROR (already started), so don't do that.
This commit is contained in:
committed by
Matt Clay
parent
7af1c96623
commit
103b5954c7
@@ -210,10 +210,10 @@ def main():
|
||||
module.fail_json(msg=out, name=name, state=state)
|
||||
|
||||
if state == 'started':
|
||||
take_action_on_processes(processes, lambda s: s != 'RUNNING', 'start', 'started')
|
||||
take_action_on_processes(processes, lambda s: s not in ('RUNNING', 'STARTING'), 'start', 'started')
|
||||
|
||||
if state == 'stopped':
|
||||
take_action_on_processes(processes, lambda s: s == 'RUNNING', 'stop', 'stopped')
|
||||
take_action_on_processes(processes, lambda s: s in ('RUNNING', 'STARTING'), 'stop', 'stopped')
|
||||
|
||||
# import module snippets
|
||||
from ansible.module_utils.basic import *
|
||||
|
||||
Reference in New Issue
Block a user