|
130 | 130 | url: "https://ftp.pcre.org/pub/pcre/{{ pcre_version }}.tar.gz"
|
131 | 131 | dest: "/tmp/{{ pcre_version }}.tar.gz"
|
132 | 132 | mode: 0600
|
133 |
| - validate_certs: "{{ (ansible_facts['os_family'] == 'RedHat' and ansible_facts['distribution_major_version'] is version('6', '==')) |
134 |
| - | ternary('false', 'true') }}" |
135 | 133 | register: pcre_source
|
136 | 134 |
|
137 | 135 | - name: Unpack PCRE dependency
|
|
190 | 188 | url: "https://zlib.net/{{ zlib_version }}.tar.gz"
|
191 | 189 | dest: "/tmp/{{ zlib_version }}.tar.gz"
|
192 | 190 | mode: 0600
|
193 |
| - validate_certs: "{{ (ansible_facts['os_family'] == 'RedHat' and ansible_facts['distribution_major_version'] is version('6', '==')) |
194 |
| - | ternary('false', 'true') }}" |
195 | 191 | register: zlib_source
|
196 | 192 |
|
197 | 193 | - name: Unpack ZLib dependency
|
|
250 | 246 | url: "https://www.openssl.org/source/{{ openssl_version }}.tar.gz"
|
251 | 247 | dest: "/tmp/{{ openssl_version }}.tar.gz"
|
252 | 248 | mode: 0600
|
253 |
| - validate_certs: "{{ (ansible_facts['os_family'] == 'RedHat' and ansible_facts['distribution_major_version'] is version('6', '==')) |
254 |
| - | ternary('false', 'true') }}" |
255 | 249 | register: openssl_source
|
256 | 250 |
|
257 | 251 | - name: Unpack OpenSSL dependency
|
|
285 | 279 | uri:
|
286 | 280 | url: https://version.nginx.com/nginx/{{ nginx_branch }}
|
287 | 281 | return_content: true
|
288 |
| - validate_certs: "{{ (ansible_facts['os_family'] == 'RedHat' and ansible_facts['distribution_major_version'] is version('6', '==')) |
289 |
| - | ternary('false', 'true') }}" |
290 | 282 | check_mode: false
|
291 | 283 | register: nginx_versions
|
292 | 284 |
|
|
311 | 303 | url: "https://nginx.org/download/{{ nginx_version }}.tar.gz"
|
312 | 304 | dest: "/tmp/{{ nginx_version }}.tar.gz"
|
313 | 305 | mode: 0600
|
314 |
| - validate_certs: "{{ (ansible_facts['os_family'] == 'RedHat' and ansible_facts['distribution_major_version'] is version('6', '==')) |
315 |
| - | ternary('false', 'true') }}" |
316 | 306 | register: nginx_source
|
317 | 307 |
|
318 | 308 | - name: Unpack NGINX
|
|
0 commit comments