Set selinux state to 'permissive' for state=disabled
This commit is contained in:
parent
36c653f54a
commit
447c625cb3
1 changed files with 11 additions and 6 deletions
|
@ -174,10 +174,15 @@ def main():
|
|||
if (state != runtime_state):
|
||||
if module.check_mode:
|
||||
module.exit_json(changed=True)
|
||||
if (runtime_enabled):
|
||||
if (state == 'disabled'):
|
||||
if (runtime_state != 'permissive'):
|
||||
# Temporarily set state to permissive
|
||||
set_state('permissive')
|
||||
msgs.append('runtime state temporarily changed from \'%s\' to \'permissive\', state change will take effect next reboot' % (runtime_state))
|
||||
else:
|
||||
msgs.append('state change will take effect next reboot')
|
||||
else:
|
||||
if (runtime_enabled):
|
||||
set_state(state)
|
||||
msgs.append('runtime state changed from \'%s\' to \'%s\'' % (runtime_state, state))
|
||||
else:
|
||||
|
|
Loading…
Reference in a new issue