20 lines
376 B
YAML
Executable File
20 lines
376 B
YAML
Executable File
---
|
|
- 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 |