SelinuxConfig - file /etc/selinux/config
- class insights.parsers.selinux_config.SelinuxConfig(context)[source]
Bases:
Parser,dictParse the SELinux configuration file.
Produces a simple dictionary of keys and values from the configuration file contents , stored in the
dataattribute. The object also functions as a dictionary itself thanks to theinsights.core.LegacyItemAccessmixin class.Sample configuration file:
# This file controls the state of SELinux on the system. # SELINUX= can take one of these three values: # enforcing - SELinux security policy is enforced. # permissive - SELinux prints warnings instead of enforcing. # disabled - No SELinux policy is loaded. SELINUX=enforcing # SELINUXTYPE= can take one of these two values: # targeted - Targeted processes are protected, # minimum - Modification of targeted policy. Only selected processes are protected. # mls - Multi Level Security protection. SELINUXTYPE=targeted
Examples
>>> conf['SELINUX'] 'enforcing' >>> 'AUTORELABEL' in conf False