New structure

This commit is contained in:
2024-03-06 10:56:21 +00:00
parent f717d9ca0d
commit ca5b61e58b
38 changed files with 706 additions and 4 deletions

12
playbooks/apt2-update.yml Normal file
View File

@@ -0,0 +1,12 @@
---
- hosts: all
vars:
ansible_host_key_checking: false ##If you get an error about hosts not trusted
become: true
tasks:
- name: Update all packages to their latest version
ansible.builtin.apt:
name: "*"
state: latest