ansible_playbooks/debian_update.yml

9 lines
201 B
YAML

- hosts: all
become: true
tasks:
- name: Update all host/vm packages
ansible.builtin.apt:
update_cache: true
cache_valid_time: 3600
name: "*"
state: latest