Add new param "ignore_selinux_state" to seport, sefcontext, seboolean (#48945)

This commit is contained in:
Thiago Ribeiro 2019-01-16 18:50:02 -02:00 committed by Sam Doran
parent 4746781423
commit 04b381b28a
3 changed files with 42 additions and 3 deletions

View file

@ -32,6 +32,12 @@ options:
- Desired boolean value
type: bool
required: true
ignore_selinux_state:
description:
- Useful for scenarios (chrooted environment) that you can't get the real SELinux state.
type: bool
default: false
version_added: '2.8'
notes:
- Not tested on any Debian based system.
requirements:
@ -68,6 +74,10 @@ from ansible.module_utils.six import binary_type
from ansible.module_utils._text import to_bytes, to_text
def get_runtime_status(ignore_selinux_state=False):
return True if ignore_selinux_state is True else selinux.is_selinux_enabled()
def has_boolean_value(module, name):
bools = []
try:
@ -260,6 +270,7 @@ def set_boolean_value(module, name, state):
def main():
module = AnsibleModule(
argument_spec=dict(
ignore_selinux_state=dict(type='bool', default=False),
name=dict(type='str', required=True),
persistent=dict(type='bool', default=False),
state=dict(type='bool', required=True),
@ -273,7 +284,9 @@ def main():
if not HAVE_SEMANAGE:
module.fail_json(msg="This module requires libsemanage-python support")
if not selinux.is_selinux_enabled():
ignore_selinux_state = module.params['ignore_selinux_state']
if not get_runtime_status(ignore_selinux_state):
module.fail_json(msg="SELinux is disabled on this host.")
name = module.params['name']