commit 7a3dd8fbd380ac329ba2b154eef0b8d4186456cc Author: nono Date: Thu May 14 08:42:56 2026 +0000 add ansible playbook and inv file diff --git a/inventory.ini b/inventory.ini new file mode 100644 index 0000000..59ecc8b --- /dev/null +++ b/inventory.ini @@ -0,0 +1,47 @@ +[hetz] +root@167.235.24.155 + +[prox] +; pve +root@10.0.0.201 +root@10.0.0.202 +root@10.0.0.203 +; pbs +root@10.0.0.211 +root@10.0.0.213 +; pdm +root@10.0.0.220 + +[lxc] +root@10.0.0.100 +root@10.0.0.101 +root@10.0.0.102 +root@10.0.0.103 +root@10.0.0.104 +root@10.0.0.105 +root@10.0.0.106 +root@10.0.0.107 +root@10.0.0.108 +root@10.0.0.109 +root@10.0.0.110 +root@10.0.0.111 +root@10.0.0.112 +root@10.0.0.113 +root@10.0.0.114 +root@10.0.0.115 +root@10.0.0.116 +root@10.0.0.117 +root@10.0.0.118 +root@10.0.0.119 +root@10.0.0.120 +root@10.0.0.121 +root@10.0.0.122 +root@10.0.0.123 +root@10.0.0.124 +root@10.0.0.125 +root@10.0.0.126 +root@10.0.0.127 +root@10.0.0.128 +root@10.0.0.129 +root@10.0.0.130 +root@10.0.0.131 diff --git a/playbook.yml b/playbook.yml new file mode 100644 index 0000000..01909d2 --- /dev/null +++ b/playbook.yml @@ -0,0 +1,9 @@ +- name: update shizz + hosts: all + tasks: + + - name: Update, upgrade and autoremove + apt: + update_cache: true + upgrade: full + autoremove: true