File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ ENHANCEMENTS:
10
10
BUG FIXES:
11
11
12
12
* Prevent TravisCI from trying to build (and failing) NGINX Plus images on external PRs.
13
+ * Fix naming for SELinux facts dict.
13
14
14
15
## 0.17.2 (September 24, 2020)
15
16
Original file line number Diff line number Diff line change 11
11
12
12
- name : Configure SELinux
13
13
include_tasks : " {{ role_path }}/tasks/prerequisites/setup-selinux.yml"
14
- when : ansible_facts['selinux. mode'] is defined
14
+ when : ansible_facts['selinux'][' mode'] is defined
15
15
when :
16
16
- nginx_selinux | bool
17
+ - " 'selinux' in ansible_facts"
17
18
- ansible_facts['os_family'] in ['RedHat', 'Suse']
18
19
- ansible_facts['distribution'] not in ['Amazon', 'OracleLinux']
Original file line number Diff line number Diff line change 22
22
state : permissive
23
23
policy : targeted
24
24
changed_when : false
25
- when : ansible_facts['selinux. mode'] == "enforcing"
25
+ when : ansible_facts['selinux'][' mode'] == "enforcing"
26
26
27
27
- name : Allow SELinux HTTP network connections
28
28
seboolean :
99
99
changed_when : false
100
100
when :
101
101
- nginx_selinux_enforcing | bool
102
- - ansible_facts['selinux. mode'] == "permissive"
102
+ - ansible_facts['selinux'][' mode'] == "permissive"
You can’t perform that action at this time.
0 commit comments