File tree Expand file tree Collapse file tree 8 files changed +18
-9
lines changed
.github/workflows/requirements
tasks/common/prerequisites Expand file tree Collapse file tree 8 files changed +18
-9
lines changed Original file line number Diff line number Diff line change 1
1
---
2
2
collections :
3
3
- name : community.general
4
- version : 4.4.0
4
+ version : 4.6.1
5
5
- name : ansible.posix
6
6
version : 1.3.0
7
7
- name : community.docker
8
- version : 2.1 .1
8
+ version : 2.2 .1
Original file line number Diff line number Diff line change @@ -9,11 +9,16 @@ BREAKING CHANGES:
9
9
* Cleanup deprecated Alpine Linux tasks.
10
10
* Remove ` nginx_app_protect_configure ` parameter since it has limited functionality given the ` nginx_app_protect_*_policy_file_enable ` parameters.
11
11
12
+ FEATURES:
13
+
14
+ Rename all modules to use the fully qualified collection name (FQCN) per Ansible guidelines.
15
+
12
16
ENHANCEMENTS:
13
17
14
18
* Add support of RHEL 8.1+ for NGINX App Protect WAF 3.8.
15
19
* Add support of RHEL 7.4+ and 8.x for NGINX App Protect DoS 2.1.
16
20
* New molecule tests for RHEL 7/8 and for NGINX App Protect WAF/DoS removal scenarios.
21
+ * Bump the Ansible ` community.general ` collection to ` 4.6.1 ` and ` community.docker ` collection to ` 2.2.1 ` .
17
22
18
23
BUG FIXES:
19
24
Original file line number Diff line number Diff line change @@ -35,3 +35,7 @@ galaxy_info:
35
35
- server
36
36
- development
37
37
- dos
38
+
39
+ collections :
40
+ - ansible.posix
41
+ - community.general
Original file line number Diff line number Diff line change 24
24
- distribution
25
25
26
26
- name : (RHEL) Unregister system from RHEL subscription manager
27
- redhat_subscription :
27
+ community.general. redhat_subscription :
28
28
state : absent
29
29
when : ansible_distribution == "RedHat"
30
30
rescue :
Original file line number Diff line number Diff line change 12
12
- lookup('env', 'RHEL_PASSWORD') | length > 0
13
13
14
14
- name : (RHEL) Register system into RHEL subscription manager
15
- redhat_subscription :
15
+ community.general. redhat_subscription :
16
16
username : " {{ lookup('env', 'RHEL_USERNAME') }}"
17
17
password : " {{ lookup('env', 'RHEL_PASSWORD') }}"
18
18
when :
Original file line number Diff line number Diff line change 12
12
- lookup('env', 'RHEL_PASSWORD') | length > 0
13
13
14
14
- name : (RHEL) Register system into RHEL subscription manager
15
- redhat_subscription :
15
+ community.general. redhat_subscription :
16
16
username : " {{ lookup('env', 'RHEL_USERNAME') }}"
17
17
password : " {{ lookup('env', 'RHEL_PASSWORD') }}"
18
18
when :
Original file line number Diff line number Diff line change 30
30
- lookup('env', 'RHEL_PASSWORD') | length > 0
31
31
32
32
- name : (RHEL) Register system into RHEL subscription manager
33
- redhat_subscription :
33
+ community.general. redhat_subscription :
34
34
username : " {{ lookup('env', 'RHEL_USERNAME') }}"
35
35
password : " {{ lookup('env', 'RHEL_PASSWORD') }}"
36
36
when :
51
51
nginx_app_protect_dos_enable : true
52
52
post_tasks :
53
53
- name : (RHEL) Unregister system from RHEL subscription manager
54
- redhat_subscription :
54
+ community.general. redhat_subscription :
55
55
state : absent
56
56
when :
57
57
- ansible_distribution == "RedHat"
Original file line number Diff line number Diff line change 56
56
- nginx_app_protect_dos_enable | bool
57
57
58
58
- name : (RHEL 7) Set up RHEL dependencies from RHEL official repositories
59
- rhsm_repository :
59
+ community.general. rhsm_repository :
60
60
name :
61
61
- rhel-7-server-optional-rpms
62
62
- rhel-7-server-extras-rpms
66
66
- nginx_app_protect_use_rhel_subscription_repos | bool
67
67
68
68
- name : (RHEL 8) Set up RHEL dependencies from RHEL official repositories
69
- rhsm_repository :
69
+ community.general. rhsm_repository :
70
70
name : codeready-builder-for-rhel-8-x86_64-rpms
71
71
when :
72
72
- ansible_distribution_major_version == "8"
You can’t perform that action at this time.
0 commit comments