From 912ba4da24bcf4f24c683ca0b2d3bf8d65b34093 Mon Sep 17 00:00:00 2001 From: "stephane.david" Date: Sun, 26 Jan 2025 16:38:19 +0100 Subject: [PATCH] Add Update System playbook --- updateSystem.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/updateSystem.yml b/updateSystem.yml index e69de29..7df3683 100644 --- a/updateSystem.yml +++ b/updateSystem.yml @@ -0,0 +1,12 @@ +- name: install docker + hosts: all + tasks: + - name: Apt Update + shell: apt update + + - name: Apt Full Upgrade + shell: apt full-upgrade + + - name: Apt Autoremove + shell: apt autoremove +