Files
Ansible-GUI-Small/playbooks/test.yml
jonnybravo aeb7626194 2
2026-07-20 16:20:15 +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 }}"