mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-01 16:23:10 +00:00
54 lines
1.2 KiB
JSON
54 lines
1.2 KiB
JSON
{
|
|
"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"
|
|
} |