tweak config mode check to just have a default
This commit is contained in:
parent
477ca2ed1a
commit
e9c9d8f523
1 changed files with 3 additions and 6 deletions
|
@ -130,18 +130,15 @@ class Facts(object):
|
|||
self.facts['selinux']['policyvers'] = 'unknown'
|
||||
try:
|
||||
(rc, configmode) = selinux.selinux_getenforcemode()
|
||||
if rc == 0 and configmode in Facts.SELINUX_MODE_DICT:
|
||||
self.facts['selinux']['config_mode'] = Facts.SELINUX_MODE_DICT[configmode]
|
||||
if rc == 0:
|
||||
self.facts['selinux']['config_mode'] = Facts.SELINUX_MODE_DICT.get(configmode, 'unknown')
|
||||
else:
|
||||
self.facts['selinux']['config_mode'] = 'unknown'
|
||||
except OSError, e:
|
||||
self.facts['selinux']['config_mode'] = 'unknown'
|
||||
try:
|
||||
mode = selinux.security_getenforce()
|
||||
if mode in Facts.SELINUX_MODE_DICT:
|
||||
self.facts['selinux']['mode'] = Facts.SELINUX_MODE_DICT[mode]
|
||||
else:
|
||||
self.facts['selinux']['mode'] = 'unknown'
|
||||
self.facts['selinux']['mode'] = Facts.SELINUX_MODE_DICT.get(mode, 'unknown')
|
||||
except OSError, e:
|
||||
self.facts['selinux']['mode'] = 'unknown'
|
||||
try:
|
||||
|
|
Loading…
Reference in a new issue