From 4caa361aeb62aa283a32cfe9384f9ca63c34f041 Mon Sep 17 00:00:00 2001 From: Hyperling Date: Tue, 2 Feb 2021 21:44:56 -0600 Subject: [PATCH] Change to definitely use a string value. --- facts/workstation/system.yml | 4 ++-- local.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/facts/workstation/system.yml b/facts/workstation/system.yml index 9da798a..1d6c4bb 100644 --- a/facts/workstation/system.yml +++ b/facts/workstation/system.yml @@ -3,13 +3,13 @@ - name: Facts | Workstation | System | Pop OS set_fact: - flatpak_distro: true + flatpak_distro: yes sir when: ansible_distribution == "Pop!_OS" - name: Facts | Workstation | System | Debian and Ubuntu set_fact: - flatpak_distro: true + flatpak_distro: yes sir when: ansible_distribution in ("Debian","Ubuntu") diff --git a/local.yml b/local.yml index 72d5433..9d13cdb 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 == "yes sir" - name: Worktation | Linux | Packages | Not Implemented shell: echo "Not implemented yet. :(" when: ansible_system == "Linux" and - flatpak_distro != true + flatpak_distro != "yes sir" - include: tasks/freebsd/software/gui.yml when: ansible_system == "FreeBSD"