File tree 3 files changed +8
-23
lines changed
3 files changed +8
-23
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
- ## 0.23.0 (Unreleased )
3
+ ## 0.23.0 (February 16, 2022 )
4
4
5
5
BREAKING CHANGES:
6
6
7
7
* CentOS 8 has reached EoL and has thus been removed from the list of supported platforms.
8
8
* The NGINX Plus ` cookie-flag ` module is no longer supported as of R26 and has been removed.
9
+ * Remove SELinux parameters deprecated since ` 0.17 ` .
9
10
10
11
FEATURES:
11
12
Original file line number Diff line number Diff line change 1
1
---
2
2
- name : Check for build tools
3
3
block :
4
- - name : (CentOS/ RHEL 8) Setup Python 3
4
+ - name : (RHEL 8) Setup Python 3
5
5
block :
6
- - name : (CentOS/ RHEL 8) Install Python 3
6
+ - name : (RHEL 8) Install Python 3
7
7
yum :
8
8
name :
9
9
- python3
10
10
- python3-pip
11
11
- python3-devel
12
12
update_cache : true
13
13
14
- - name : (Centos/ RHEL 8) Set Python 3 as default
14
+ - name : (RHEL 8) Set Python 3 as default
15
15
alternatives :
16
16
name : python
17
17
path : /usr/bin/python3
20
20
- ansible_facts['os_family'] == "RedHat"
21
21
- ansible_facts['distribution_major_version'] is version('8', '==')
22
22
23
- - name : (Centos /RHEL) Install build tools
23
+ - name : (CentOS /RHEL) Install build tools
24
24
yum :
25
25
name :
26
26
- " @Development tools"
158
158
- not nginx_install_source_pcre | bool
159
159
- not ansible_check_mode | bool
160
160
161
- - name : (Centos /RHEL) Install ZLib dependency from package
161
+ - name : (CentOS /RHEL) Install ZLib dependency from package
162
162
yum :
163
163
name : zlib-devel
164
164
update_cache : true
Original file line number Diff line number Diff line change 8
8
- setools
9
9
when : ansible_facts['distribution_major_version'] is version('8', '!=')
10
10
11
- - name : (CentOS/ RHEL 8) Install dependencies
11
+ - name : (RHEL 8) Install dependencies
12
12
yum :
13
13
name :
14
14
- libselinux-utils
34
34
state : true
35
35
persistent : true
36
36
37
- - name : (DEPRECATED) Allow SELinux TCP connections on status ports
38
- seport :
39
- ports : " {{ nginx_status_port }}"
40
- proto : tcp
41
- setype : http_port_t
42
- state : present
43
- when : nginx_status_port is defined
44
-
45
- - name : (DEPRECATED) Allow SELinux TCP connections on Rest API ports
46
- seport :
47
- ports : " {{ nginx_rest_api_port }}"
48
- proto : tcp
49
- setype : http_port_t
50
- state : present
51
- when : nginx_rest_api_port is defined
52
-
53
37
- name : Allow SELinux TCP connections on specific ports
54
38
seport :
55
39
ports : " {{ nginx_selinux_tcp_ports }}"
You can’t perform that action at this time.
0 commit comments