From 34224c94fdde4425cd4165a541be4e0630ac632d Mon Sep 17 00:00:00 2001 From: bigsmokecriminal <51396254+bigsmokecriminal@users.noreply.github.com> Date: Wed, 5 Jan 2022 23:58:21 +0100 Subject: [PATCH] added apt update to debian setup --- tasks/setup-Debian.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tasks/setup-Debian.yml b/tasks/setup-Debian.yml index cc444ca..710404c 100644 --- a/tasks/setup-Debian.yml +++ b/tasks/setup-Debian.yml @@ -49,3 +49,7 @@ repo: "{{ docker_apt_repository }}" state: present update_cache: true + +- name: Update apt cache + apt: + update_cache: yes