From 4554a96315ad61fe61232311b9dd35242ecf6591 Mon Sep 17 00:00:00 2001 From: Hyperling Date: Tue, 2 Feb 2021 21:42:04 -0600 Subject: [PATCH] Change true to be literal. Hopefully does not get mistaken for variable name. --- local.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/local.yml b/local.yml index 5e4c7e7..72d5433 100644 --- a/local.yml +++ b/local.yml @@ -43,11 +43,11 @@ tasks: - include: tasks/linux/software/flatpaks.yml when: ansible_system == "Linux" and - flatpak_distro == "true" + flatpak_distro == true - name: Worktation | Linux | Packages | Not Implemented shell: echo "Not implemented yet. :(" when: ansible_system == "Linux" and - flatpak_distro != "true" + flatpak_distro != true - include: tasks/freebsd/software/gui.yml when: ansible_system == "FreeBSD"