From my expectation the task Setup bridge from the the file tasks/system/bridge/Debian.yml should be executed. I am on a Debian system and the file is included, however the filter openvpn_bridge | bool is evaluated to false. I have checked this with a debug statement in my playbook where I echo the var openvpn_bridge and openvpn_bridge | bool.
I would expect something like
when: openvpn_bridge is defined and openvpn_bridge|length > 0
would be a valid filter to check if the dictionary is popolated.
Or do I misunderstand the meaning of the variable openvpn_bridge?
Is there a working example for bridged based setups then?
I have set the following options for my bridge based setup:
From my expectation the task
Setup bridge
from the the filetasks/system/bridge/Debian.yml
should be executed. I am on aDebian
system and the file is included, however the filteropenvpn_bridge | bool
is evaluated to false. I have checked this with adebug
statement in my playbook where I echo the varopenvpn_bridge
andopenvpn_bridge | bool
.I would expect something like
would be a valid filter to check if the dictionary is popolated.
Or do I misunderstand the meaning of the variable
openvpn_bridge
? Is there a working example for bridged based setups then?