ipv6 working

This commit is contained in:
2024-06-09 18:35:56 -04:00
parent 642c0011ff
commit 1f4769fdbe
33 changed files with 487 additions and 207 deletions

17
updates/upgrade-apt.yaml Normal file
View File

@@ -0,0 +1,17 @@
- name: Upgrade
hosts: apt
tasks:
- name: Update all packages to their latest version
become: true
become_user: root
become_method: sudo
ansible.builtin.apt:
name: "*"
state: latest
update_cache: yes
- name: Reboot
become: true
become_user: root
become_method: sudo
ansible.builtin.reboot:
reboot_timeout: 600