Diabled Cows, Added full inventory, Added update playbook, Refactoring for Conformity

This commit is contained in:
Tim Schilling
2024-11-19 15:38:18 +01:00
parent 85c4ebba71
commit 34a7651d08
4 changed files with 39 additions and 18 deletions
+13
View File
@@ -0,0 +1,13 @@
---
- name: Update Server
hosts: linuxservers
become: true
tasks:
- name: Update and Upgrade System
apt:
update_cache: true
upgrade: true
- name: Reboot System
reboot:
...