facts: don’t barf on undefined platform

Oops.
This commit is contained in:
Timotej Lazar 2025-05-15 09:23:11 +02:00
parent d162f175a4
commit a8814e6da2

View file

@ -61,4 +61,4 @@
ansible_shell_type: powershell
ansible_become_method: runas
ansible_become_flags: ""
when: platform == "windows"
when: platform | default("") == "windows"