Unified document generator and make to generate JSON and JS files

This commit is contained in:
Marco Vito Moscaritolo
2012-10-09 22:04:55 +02:00
committed by Michael DeHaan
parent 85fb83a5db
commit ee679c0190
51 changed files with 5969 additions and 9 deletions

View File

@@ -0,0 +1,41 @@
{
"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"
}