You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tasks/install-app-protect-linux.yml
+19-4Lines changed: 19 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -36,8 +36,8 @@
36
36
that:
37
37
- nginx_plus_version is defined
38
38
- nginx_plus_version | int >= 18
39
-
fail_msg: "'nginx_plus_version' release version must be a minimum of 18 for App Protect. Actual: {{ nginx_plus_version }}"
40
-
success_msg: "'nginx_plus_version' is {{ nginx_plus_version }}"
39
+
fail_msg: "'nginx_plus_version' release version must be a minimum of 18 for App Protect. Actual: {{ (nginx_plus_version is defined) | ternary(nginx_plus_version, 'NONE') }}"
40
+
success_msg: "'nginx_plus_version' is {{ (nginx_plus_version is defined) | ternary(nginx_plus_version, 'NONE') }}"
41
41
quiet: true
42
42
43
43
- name: Fail if app protect zip doesn't not match detected NGINX+ version
@@ -62,8 +62,8 @@
62
62
- name: Unarchive the App Protect package file that is already on the remote machine
63
63
unarchive:
64
64
src: "{{ install_zip }}"
65
-
dest: "{{ tmp_dir }}"
66
-
remote_src: yes
65
+
dest: "{{ tmp_dir }}/"
66
+
remote_src: true
67
67
68
68
- name: Display paths of all .rpm files in dir; exclude NGINX+ installer
0 commit comments