Initialer Import der Synology Scripts
This commit is contained in:
Executable
+20
@@ -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
|
||||
Reference in New Issue
Block a user