File tree Expand file tree Collapse file tree 5 files changed +9
-5
lines changed Expand file tree Collapse file tree 5 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,10 @@ BREAKING CHANGES:
6
6
7
7
CentOS 8 has reached EoL and has thus been removed from the list of supported platforms.
8
8
9
+ FEATURES:
10
+
11
+ Support for ansible-base (ansible-core ` <2.12 ` ).
12
+
9
13
BUG FIXES:
10
14
11
15
The Molecule ` upgrade ` scenario verification test no longer has to be updated on each new NGINX OSS release.
Original file line number Diff line number Diff line change 27
27
name : " nginx{{ nginx_version | default('') }}"
28
28
state : " {{ nginx_state }}"
29
29
update_cache : true
30
- allow_downgrade : true
30
+ allow_downgrade : " {{ omit if ansible_version.full is version('2.12', '<') else true }} "
31
31
ignore_errors : " {{ ansible_check_mode }}"
32
32
notify : (Handler) Run NGINX
Original file line number Diff line number Diff line change 8
8
enabled : true
9
9
gpgcheck : true
10
10
mode : 0644
11
- module_hotfixes : true
11
+ module_hotfixes : " {{ omit if ansible_version.full is version('2.11', '<') else true }} "
12
12
state : " {{ (nginx_state == 'uninstall') | ternary('absent', 'present') }}"
13
13
when : nginx_manage_repo | bool
14
14
17
17
name : " nginx{{ nginx_version | default('') }}"
18
18
state : " {{ nginx_state }}"
19
19
update_cache : true
20
- allow_downgrade : true
20
+ allow_downgrade : " {{ omit if ansible_version.full is version('2.12', '<') else true }} "
21
21
ignore_errors : " {{ ansible_check_mode }}"
22
22
notify : (Handler) Run NGINX
Original file line number Diff line number Diff line change 25
25
name : " nginx-plus{{ nginx_version | default('') }}"
26
26
state : " {{ nginx_state }}"
27
27
update_cache : true
28
- allow_downgrade : true
28
+ allow_downgrade : " {{ omit if ansible_version.full is version('2.12', '<') else true }} "
29
29
ignore_errors : " {{ ansible_check_mode }}"
30
30
when : nginx_license_status is not defined
31
31
notify : (Handler) Run NGINX
Original file line number Diff line number Diff line change 18
18
name : " nginx-plus{{ nginx_version | default('') }}"
19
19
state : " {{ nginx_state }}"
20
20
update_cache : true
21
- allow_downgrade : true
21
+ allow_downgrade : " {{ omit if ansible_version.full is version('2.12', '<') else true }} "
22
22
ignore_errors : " {{ ansible_check_mode }}"
23
23
when : nginx_license_status is not defined
24
24
notify : (Handler) Run NGINX
You can’t perform that action at this time.
0 commit comments