1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Added DOCUMENTATION to supervisorctl module.

This commit is contained in:
Marco Vito Moscaritolo 2012-09-29 21:02:07 +02:00
parent 9377c3f525
commit 95d7b4c5db

View file

@ -19,6 +19,32 @@
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
#
DOCUMENTATION = '''
---
module: supervisorctl
short_description: Manage the state of a program or group of programs running via Supervisord
description:
- Manage the state of a program or group of programs running via Supervisord
version_added: "0.7"
options:
name:
description:
- The name of the supervisord program/process to manage
required: true
default: null
state:
description:
- The state of service
required: true
default: null
choices: [ "started", "stopped", "restarted" ]
examples:
- code: supervisorctl name=my_app state=started
description: Manage the state of program I(my_app) to be in I(started) state.
requirements: [ ]
author: Matt Wright
'''
def _is_present(name, supervisorctl):
rc, out, err = _run('%s status' % supervisorctl)
return name in out