debian_update.yml aktualisiert

This commit is contained in:
eschindler 2025-03-29 11:01:15 +00:00
parent 897eae39bf
commit f8514b0c22
1 changed files with 6 additions and 2 deletions

View File

@ -1,5 +1,9 @@
- hosts: all - hosts: all
become: true become: true
tasks: tasks:
- name: Update apt-get repo and cache - name: Update all host/vm packages
apt: update_cache=yes force_apt_get=yes cache_valid_time=3600 ansible.builtin.apt:
update_cache: true
cache_valid_time: 3600
name: "*"
state: latest