ansible-role-common/tasks/update-Debian.yml

13 lines
262 B
YAML

---
# Common/Update: Install All Updates - Debian Version
- name: update - Update and upgrade all packages
become: yes
ansible.builtin.apt:
force_apt_get: true
name: "*"
state: latest
update_cache: yes
autoclean: yes
autoremove: yes