Don't use jinja with conditionals

This commit is contained in:
Luke Murphy 2020-04-15 11:56:49 +02:00
parent a0ee2f060e
commit dc1a032021
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC
1 changed files with 1 additions and 1 deletions

View File

@ -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