From cfd4fe87ff53a8db99329805866c5d4c1f046800 Mon Sep 17 00:00:00 2001 From: alecsandru Date: Thu, 2 May 2024 20:34:14 +0000 Subject: [PATCH] two tasks --- update.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/update.yml b/update.yml index 84445ab..3cca766 100644 --- a/update.yml +++ b/update.yml @@ -1,10 +1,13 @@ - hosts: all become: true tasks: + - name: update apt list + become: yes + apt: + update_cache: yes - name: Update and upgrade apt packages apt: upgrade: yes - update_cache: yes become: yes # - hosts: all