2024-11/08/var_definiert_oder_nicht.yml
2024-11-28 09:56:02 +01:00

19 lines
433 B
YAML

---
- hosts: localhost
gather_facts: no
tasks:
- debug:
msg: "{{ inhalt }}"
when: inhalt|default(False)
- debug:
msg: "Variable nicht definiert"
when: inhalt is not defined
- debug:
msg:
- "inhalt|default(False) → {{ inhalt|default(False) }} → {{ inhalt|default(False)|bool }}"
- "inhalt is not defined → {{ inhalt is not defined }} → {{ inhalt is not defined|bool }}"