added dist and full update playbooks

This commit is contained in:
Dan Hamik 2025-04-03 17:17:04 -05:00
parent f2f5f52593
commit f079769669
2 changed files with 16 additions and 0 deletions

8
dist-upgrade-all.yaml Normal file
View File

@ -0,0 +1,8 @@
- hosts: all
tasks:
- name: update system
ansible.builtin.apt:
update_cache: yes
autoclean: yes
autoremove: yes
upgrade: dist

8
full-upgrade-all.yaml Normal file
View File

@ -0,0 +1,8 @@
- hosts: all
tasks:
- name: update system
ansible.builtin.apt:
update_cache: yes
autoclean: yes
autoremove: yes
upgrade: dist