File tree Expand file tree Collapse file tree 3 files changed +13
-3
lines changed Expand file tree Collapse file tree 3 files changed +13
-3
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 0.6.1 (Unreleased)
4
+
5
+ BUG FIXES:
6
+
7
+ Role was failing at license and repo removal step when using the default of ` nginx_app_protect_remove_license: true ` .
8
+
3
9
## 0.6.0 (July 13, 2021)
4
10
5
11
BREAKING CHANGES:
Original file line number Diff line number Diff line change 27
27
nginx_enable : true
28
28
nginx_start : true
29
29
nginx_type : plus
30
- nginx_remove_license : false
31
30
nginx_license :
32
31
certificate : ../../files/license/nginx-repo.crt
33
32
key : ../../files/license/nginx-repo.key
Original file line number Diff line number Diff line change 3
3
set_fact :
4
4
nginx_app_protect_license_status : absent
5
5
6
- - name : Delete repository data
7
- include_tasks : " {{ role_path }}/tasks/install/install-{{ ansible_os_family | lower }}.yml"
6
+ - name : Delete NGINX App Protect WAF repository data
7
+ include_tasks : " {{ role_path }}/tasks/waf/install/install-{{ ansible_os_family | lower }}.yml"
8
+ when : nginx_app_protect_waf_enable | bool
9
+
10
+ - name : Delete NGINX App Protect DoS repository data
11
+ include_tasks : " {{ role_path }}/tasks/dos/install/install-{{ ansible_os_family | lower }}.yml"
12
+ when : nginx_app_protect_dos_enable | bool
8
13
9
14
- name : Delete NGINX App Protect license
10
15
file :
You can’t perform that action at this time.
0 commit comments