Files
community.general/docs/json/supervisorctl.json
2012-10-10 18:41:50 -04:00

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"
}