aboutsummaryrefslogtreecommitdiff
path: root/ansible/playbooks/apt_update.yml
diff options
context:
space:
mode:
authorclyhtsuriva <aimeric@adjutor.xyz>2025-02-16 20:06:17 +0100
committerclyhtsuriva <aimeric@adjutor.xyz>2025-02-16 20:06:17 +0100
commit8af7efa1e03c1d37cf34197249e487348d382d82 (patch)
tree70564ffd883d494c0d0ea69d43e9dcf4edc421a7 /ansible/playbooks/apt_update.yml
parentfde2b4f0024c65efbab8cf3029bae6042e99f6da (diff)
ansible: apt_update becomes update_system to handle apt & dnf updates
Using this opportunity to become role based
Diffstat (limited to 'ansible/playbooks/apt_update.yml')
-rw-r--r--ansible/playbooks/apt_update.yml12
1 files changed, 0 insertions, 12 deletions
diff --git a/ansible/playbooks/apt_update.yml b/ansible/playbooks/apt_update.yml
deleted file mode 100644
index 2724a30..0000000
--- a/ansible/playbooks/apt_update.yml
+++ /dev/null
@@ -1,12 +0,0 @@
----
-- name: Update the server
- hosts: vps
- become: true
- tasks:
-
- - name: Update and upgrade apt packages
- ansible.builtin.apt:
- update_cache: true
- upgrade: true
- autoremove: true
-...