File tree Expand file tree Collapse file tree 7 files changed +14
-35
lines changed
.github/workflows/requirements Expand file tree Collapse file tree 7 files changed +14
-35
lines changed Original file line number Diff line number Diff line change 1
- ansible-core==2.12.4
1
+ ansible-core==2.12.5
Original file line number Diff line number Diff line change 1
- ansible-core==2.12.4
1
+ ansible-core==2.12.5
2
2
jinja2==3.1.1
3
3
ansible-lint==6.0.2
4
4
yamllint==1.26.3
Original file line number Diff line number Diff line change 4
4
5
5
BUG FIXES:
6
6
7
- Ensure gpg-agent is installed on Ubuntu/Debian to avoid APT key tasks failures.
7
+ * Ensure gpg-agent is installed on Ubuntu/Debian to avoid APT key tasks failures.
8
+ * Always refresh the ` yum ` cache.
8
9
9
10
## 0.23.1 (April 6, 2022)
10
11
Original file line number Diff line number Diff line change 2
2
- name : Converge
3
3
hosts : all
4
4
pre_tasks :
5
- - name : Set repo if Alpine
6
- ansible.builtin.set_fact :
7
- version : " =1.20.2-r1"
8
- when : ansible_facts['os_family'] == "Alpine"
9
5
- name : Set repo if Debian
10
6
ansible.builtin.set_fact :
11
7
version : " =1.20.2-1~{{ ansible_facts['distribution_release'] }}"
Original file line number Diff line number Diff line change 6
6
yamllint .
7
7
ansible-lint --force-color
8
8
platforms :
9
- - name : alpine-3.12
10
- image : alpine:3.12
11
- dockerfile : ../common/Dockerfile.j2
12
- privileged : true
13
- volumes :
14
- - " /sys/fs/cgroup:/sys/fs/cgroup:rw"
15
- command : " /sbin/init"
16
- - name : alpine-3.13
17
- image : alpine:3.13
18
- dockerfile : ../common/Dockerfile.j2
19
- privileged : true
20
- volumes :
21
- - " /sys/fs/cgroup:/sys/fs/cgroup:rw"
22
- command : " /sbin/init"
23
- - name : alpine-3.14
24
- image : alpine:3.14
25
- dockerfile : ../common/Dockerfile.j2
26
- privileged : true
27
- volumes :
28
- - " /sys/fs/cgroup:/sys/fs/cgroup:rw"
29
- command : " /sbin/init"
30
- - name : alpine-3.15
31
- image : alpine:3.15
32
- dockerfile : ../common/Dockerfile.j2
33
- privileged : true
34
- volumes :
35
- - " /sys/fs/cgroup:/sys/fs/cgroup:rw"
36
- command : " /sbin/init"
37
9
- name : amazonlinux-2
38
10
image : amazonlinux:2
39
11
dockerfile : ../common/Dockerfile.j2
Original file line number Diff line number Diff line change 12
12
state : " {{ (nginx_state == 'uninstall') | ternary('absent', 'present') }}"
13
13
when : nginx_manage_repo | bool
14
14
15
+ - name : (Amazon Linux/CentOS/RHEL) Force Yum cache refresh
16
+ ansible.builtin.command : yum clean metadata
17
+ when : nginx_manage_repo | bool
18
+ changed_when : false
19
+
15
20
- name : (Amazon Linux/CentOS/RHEL) {{ nginx_setup | capitalize }} NGINX
16
21
ansible.builtin.yum :
17
22
name : " nginx{{ nginx_version | default('') }}"
Original file line number Diff line number Diff line change 13
13
mode : 0644
14
14
when : nginx_manage_repo | bool
15
15
16
+ - name : (Amazon Linux/CentOS/Oracle Linux/RHEL) Force Yum cache refresh
17
+ ansible.builtin.command : yum clean metadata
18
+ when : nginx_manage_repo | bool
19
+ changed_when : false
20
+
16
21
- name : (Amazon Linux/CentOS/Oracle Linux/RHEL) {{ nginx_setup | capitalize }} NGINX Plus
17
22
ansible.builtin.yum :
18
23
name : " nginx-plus{{ nginx_version | default('') }}"
You can’t perform that action at this time.
0 commit comments