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

54
docs/json/seboolean.json Normal file
View File

@@ -0,0 +1,54 @@
{
"requirements": [],
"description": [
"Toggles SELinux booleans."
],
"author": "Stephen Fromm",
"notes": [
"Not tested on any debian based system"
],
"docuri": "seboolean",
"module": "seboolean",
"filename": "library/seboolean",
"examples": [
{
"code": "seboolean name=httpd_can_network_connect state=true persistent=yes",
"description": "Set I(httpd_can_network_connect) SELinux flag to I(true) and I(persistent)"
}
],
"version_added": "0.7",
"short_description": "Toggles SELinux booleans.",
"now_date": "2012-10-09",
"options": {
"state": {
"default": null,
"required": true,
"description": [
"Desired boolean value"
],
"choices": [
"true",
"false"
]
},
"name": {
"default": null,
"required": true,
"description": [
"Name of the boolean to configure"
]
},
"persistent": {
"default": false,
"required": false,
"description": [
"Set to 'yes' if the boolean setting should survive a reboot"
],
"choices": [
"yes",
"no"
]
}
},
"ansible_version": "0.8"
}