always update cache
Infrastructure / Check and run Ansbile playbooks (pull_request) Failing after 6m13s
Details
Infrastructure / Check and run Ansbile playbooks (pull_request) Failing after 6m13s
Details
This commit is contained in:
parent
0a479039e2
commit
f75abf978a
|
@ -7,6 +7,7 @@
|
||||||
timeout: 300
|
timeout: 300
|
||||||
- name: Install system packages
|
- name: Install system packages
|
||||||
ansible.builtin.apt:
|
ansible.builtin.apt:
|
||||||
|
update_cache: true
|
||||||
package: qemu-guest-agent
|
package: qemu-guest-agent
|
||||||
state: latest
|
state: latest
|
||||||
become: true
|
become: true
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
timeout: 300
|
timeout: 300
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
ansible.builtin.apt:
|
ansible.builtin.apt:
|
||||||
|
update_cache: true
|
||||||
package:
|
package:
|
||||||
- curl
|
- curl
|
||||||
- python3-apt
|
- python3-apt
|
||||||
|
@ -19,11 +20,11 @@
|
||||||
become: true
|
become: true
|
||||||
- name: Add docker repo
|
- name: Add docker repo
|
||||||
ansible.builtin.apt_repository:
|
ansible.builtin.apt_repository:
|
||||||
update_cache: true
|
|
||||||
repo: deb [arch=amd64 signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/debian bookworm stable
|
repo: deb [arch=amd64 signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/debian bookworm stable
|
||||||
become: true
|
become: true
|
||||||
- name: Install docker
|
- name: Install docker
|
||||||
ansible.builtin.apt:
|
ansible.builtin.apt:
|
||||||
|
update_cache: true
|
||||||
pacakge:
|
pacakge:
|
||||||
- docker-ce
|
- docker-ce
|
||||||
- docker-ce-cli
|
- docker-ce-cli
|
||||||
|
|
Loading…
Reference in New Issue