Skip to content

Commit 9044d8b

Browse files
committed
Prepare 0.23.0 release
1 parent 8bd3771 commit 9044d8b

File tree

3 files changed

+8
-23
lines changed

3 files changed

+8
-23
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
# Changelog
22

3-
## 0.23.0 (Unreleased)
3+
## 0.23.0 (February 16, 2022)
44

55
BREAKING CHANGES:
66

77
* CentOS 8 has reached EoL and has thus been removed from the list of supported platforms.
88
* 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`.
910

1011
FEATURES:
1112

tasks/opensource/install-source.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
---
22
- name: Check for build tools
33
block:
4-
- name: (CentOS/RHEL 8) Setup Python 3
4+
- name: (RHEL 8) Setup Python 3
55
block:
6-
- name: (CentOS/RHEL 8) Install Python 3
6+
- name: (RHEL 8) Install Python 3
77
yum:
88
name:
99
- python3
1010
- python3-pip
1111
- python3-devel
1212
update_cache: true
1313

14-
- name: (Centos/RHEL 8) Set Python 3 as default
14+
- name: (RHEL 8) Set Python 3 as default
1515
alternatives:
1616
name: python
1717
path: /usr/bin/python3
@@ -20,7 +20,7 @@
2020
- ansible_facts['os_family'] == "RedHat"
2121
- ansible_facts['distribution_major_version'] is version('8', '==')
2222

23-
- name: (Centos/RHEL) Install build tools
23+
- name: (CentOS/RHEL) Install build tools
2424
yum:
2525
name:
2626
- "@Development tools"
@@ -158,7 +158,7 @@
158158
- not nginx_install_source_pcre | bool
159159
- not ansible_check_mode | bool
160160

161-
- name: (Centos/RHEL) Install ZLib dependency from package
161+
- name: (CentOS/RHEL) Install ZLib dependency from package
162162
yum:
163163
name: zlib-devel
164164
update_cache: true

tasks/prerequisites/setup-selinux.yml

Lines changed: 1 addition & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
- setools
99
when: ansible_facts['distribution_major_version'] is version('8', '!=')
1010

11-
- name: (CentOS/RHEL 8) Install dependencies
11+
- name: (RHEL 8) Install dependencies
1212
yum:
1313
name:
1414
- libselinux-utils
@@ -34,22 +34,6 @@
3434
state: true
3535
persistent: true
3636

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-
5337
- name: Allow SELinux TCP connections on specific ports
5438
seport:
5539
ports: "{{ nginx_selinux_tcp_ports }}"

0 commit comments

Comments
 (0)