SELinux state should now be correctly set back to enforcing (#351)

This commit is contained in:
Alessandro Fael Garcia 2020-12-10 12:46:29 +01:00 committed by GitHub
parent c2b8eb71a4
commit 063c2d0be1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 6 deletions

View File

@ -14,6 +14,10 @@ ENHANCEMENTS:
Switch NGINX keysites and OSS default repository data from a dictionary to individual variables to prevent potential issues arisen from Jinja2 dictionary run-time evaluations.
BUG FIXES:
Fix issue whereas SELinux state would not be correctly set back to `enforcing` when `nginx_selinux: true`.
## 0.18.0 (November 13, 2020)
BREAKING CHANGES:

View File

@ -21,8 +21,6 @@
selinux:
state: permissive
policy: targeted
changed_when: false
when: ansible_facts['selinux']['mode'] == "enforcing"
- name: Allow SELinux HTTP network connections
seboolean:
@ -96,7 +94,4 @@
selinux:
state: enforcing
policy: targeted
changed_when: false
when:
- nginx_selinux_enforcing | bool
- ansible_facts['selinux']['mode'] == "permissive"
when: nginx_selinux_enforcing | bool