2024-09/08/var_definiert_oder_nicht.yml

19 lines
433 B
YAML
Raw Normal View History

2024-09-18 12:10:22 +00:00
---
- 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 }}"