Update playbooks/update-apt.yaml

This commit is contained in:
Sándor 2024-09-19 16:12:54 +02:00
parent c80ee9de83
commit 8ff2824588

View File

@ -1,5 +1,9 @@
- name: Update and upgrade apt packages
---
- hosts: all
become: true
tasks:
- name: update apt packages
apt:
upgrade: yes
update_cache: yes