This commit is contained in:
jonnybravo
2026-07-20 10:27:09 +02:00
commit 23ef289075
25 changed files with 1511 additions and 0 deletions

13
playbooks/hello_world.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 }}"