Files
Ansible-GUI-Small/app/playbooks/hello_world.yml
jonnybravo 23ef289075 test
2026-07-20 10:27:09 +02:00

14 lines
324 B
YAML
Executable File

---
- name: Hallo Welt ausgeben
hosts: localhost
become: no
tasks:
- name: Hallo Welt ausgeben
debug:
msg: "Hallo {{ ansible_facts.hostname }}! Die Uhrzeit ist {{ ansible_facts.date_time.iso8601 }}"
- name: Uhrzeit ausgeben
debug:
msg: "Die Uhrzeit ist {{ ansible_facts.date_time.iso8601 }}"