mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-01 16:23:10 +00:00
41 lines
1.0 KiB
JSON
41 lines
1.0 KiB
JSON
{
|
|
"requirements": [],
|
|
"description": [
|
|
"Manage the state of a program or group of programs running via Supervisord"
|
|
],
|
|
"author": "Matt Wright",
|
|
"docuri": "supervisorctl",
|
|
"module": "supervisorctl",
|
|
"filename": "library/supervisorctl",
|
|
"examples": [
|
|
{
|
|
"code": "supervisorctl name=my_app state=started",
|
|
"description": "Manage the state of program I(my_app) to be in I(started) state."
|
|
}
|
|
],
|
|
"version_added": "0.7",
|
|
"short_description": "Manage the state of a program or group of programs running via Supervisord",
|
|
"now_date": "2012-10-09",
|
|
"options": {
|
|
"state": {
|
|
"default": null,
|
|
"required": true,
|
|
"description": [
|
|
"The state of service"
|
|
],
|
|
"choices": [
|
|
"started",
|
|
"stopped",
|
|
"restarted"
|
|
]
|
|
},
|
|
"name": {
|
|
"default": null,
|
|
"required": true,
|
|
"description": [
|
|
"The name of the supervisord program/process to manage"
|
|
]
|
|
}
|
|
},
|
|
"ansible_version": "0.8"
|
|
} |