Initialer Import der Synology Scripts

This commit is contained in:
root
2026-08-05 08:43:57 +02:00
commit 5e32a7c411
404 changed files with 79932 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
---
- name: Install Tree
hosts: debian_vms
become: false #root berechtigung
vars:
package_name: tree
tasks:
- name: install tree
package:
name: "{{ package_name }}"
state: present
update_cache: yes
register: install_output
- name: Print Package installation install_output
debug:
var: install_output