Fix "conditional statements should not include jinja2 templating". Test breaking the cfg file to see if it is even being used.

This commit is contained in:
Hyperling 2021-01-31 15:58:21 -06:00
parent 8f29741a38
commit d1756ea20e
2 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
[defaults]
inventory = hosts
inventory = yolo-test
[inventory]
localhost_warning = false

View File

@ -30,10 +30,10 @@
tasks:
- include: tasks/flatpaks.yml
when: ansible_system == "Linux" and
"{{ flatpak_distro }} == yes"
flatpak_distro == yes
- shell: echo "Not implemented yet. :("
when: ansible_system == "Linux" and
"{{ flatpak_distro }} == no"
flatpak_distro == no
- include: tasks/freebsd_gui.yml
when: ansible_system == "FreeBSD"