|
4 | 4 | pre_tasks: |
5 | 5 | - name: Set repo if Alpine |
6 | 6 | ansible.builtin.set_fact: |
7 | | - ngx_version: =1.27.2-r1 |
8 | | - njs_version: =1.27.2.0.8.6-r1 |
| 7 | + ngx_version: =1.27.4-r1 |
| 8 | + njs_version: =1.27.4.0.8.10-r1 |
9 | 9 | cacheable: true |
10 | 10 | when: ansible_facts['os_family'] == "Alpine" |
11 | 11 | - name: Set repo if Debian |
12 | 12 | ansible.builtin.set_fact: |
13 | | - ngx_version: =1.27.2-1~{{ ansible_facts['distribution_release'] }} |
14 | | - njs_version: =1.27.2+0.8.6-1~{{ ansible_facts['distribution_release'] }} |
| 13 | + ngx_version: =1.27.4-1~{{ ansible_facts['distribution_release'] }} |
| 14 | + njs_version: =1.27.4+0.8.10-1~{{ ansible_facts['distribution_release'] }} |
15 | 15 | cacheable: true |
16 | 16 | when: ansible_facts['os_family'] == "Debian" |
17 | 17 | - name: Set repo if Red Hat |
18 | 18 | ansible.builtin.set_fact: |
19 | | - ngx_version: -1.27.2-1.{{ (ansible_facts['distribution'] == "Amazon") | ternary(('amzn' + ansible_facts['distribution_major_version'] | string), ('el' + ansible_facts['distribution_major_version'] | string)) }}.ngx |
20 | | - njs_version: -1.27.2+0.8.6-1.{{ (ansible_facts['distribution'] == "Amazon") | ternary(('amzn' + ansible_facts['distribution_major_version'] | string), ('el' + ansible_facts['distribution_major_version'] | string)) }}.ngx |
| 19 | + ngx_version: -1.27.4-1.{{ (ansible_facts['distribution'] == "Amazon") | ternary(('amzn' + ansible_facts['distribution_major_version'] | string), ('el' + ansible_facts['distribution_major_version'] | string)) }}.ngx |
| 20 | + njs_version: -1.27.4+0.8.10-1.{{ (ansible_facts['distribution'] == "Amazon") | ternary(('amzn' + ansible_facts['distribution_major_version'] | string), ('el' + ansible_facts['distribution_major_version'] | string)) }}.ngx |
21 | 21 | cacheable: true |
22 | 22 | when: ansible_facts['os_family'] == "RedHat" |
23 | 23 | - name: Set repo if SLES |
24 | 24 | ansible.builtin.set_fact: |
25 | | - ngx_version: =1.27.2-1.sles{{ ansible_facts['distribution_major_version'] }}.ngx |
26 | | - njs_version: =1.27.2+0.8.6-1.sles{{ ansible_facts['distribution_major_version'] }}.ngx |
| 25 | + ngx_version: =1.27.4-1.sles{{ ansible_facts['distribution_major_version'] }}.ngx |
| 26 | + njs_version: =1.27.4+0.8.10-1.sles{{ ansible_facts['distribution_major_version'] }}.ngx |
27 | 27 | cacheable: true |
28 | 28 | when: ansible_facts['os_family'] == "Suse" |
29 | 29 | tasks: |
|
0 commit comments