From dc1a032021e9e56de5d6986c6a209c9b70ae841c Mon Sep 17 00:00:00 2001 From: Luke Murphy Date: Wed, 15 Apr 2020 11:56:49 +0200 Subject: [PATCH] Don't use jinja with conditionals --- plays/commonlib/vars.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plays/commonlib/vars.yml b/plays/commonlib/vars.yml index 26aafe4..1d2efc1 100644 --- a/plays/commonlib/vars.yml +++ b/plays/commonlib/vars.yml @@ -55,7 +55,7 @@ - name: DEBUG -> vars dump for debugging purposes debug: msg: "{{ vars }}" - when: "{{ vars_debug_mode | default(false) }}" + when: vars_debug_mode | default(false) # Note(decentral1se): this has to be done like this through the hostvars # interface because of the way Ansible forces us to work here. There is a bug