mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
Unified document generator and make to generate JSON and JS files
This commit is contained in:
committed by
Michael DeHaan
parent
85fb83a5db
commit
ee679c0190
54
docs/json/seboolean.json
Normal file
54
docs/json/seboolean.json
Normal 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"
|
||||
}
|
||||
Reference in New Issue
Block a user