This commit is contained in:
jonnybravo
2026-07-20 16:20:15 +02:00
parent 23ef289075
commit aeb7626194
30 changed files with 585 additions and 98 deletions

13
playbooks/test.yml Executable file
View File

@@ -0,0 +1,13 @@
---
- 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 }}"