From acdff063e83e4e67a176f4961e9627a74bf61d1b Mon Sep 17 00:00:00 2001 From: Hyperling Date: Sun, 31 Jan 2021 14:25:54 -0600 Subject: [PATCH] Move when's back to include's. --- local.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/local.yml b/local.yml index f81131a..d1fb6e5 100644 --- a/local.yml +++ b/local.yml @@ -26,20 +26,20 @@ hosts: workstation connection: local become: true - when: ansible_distribution != "FreeBSD" tasks: - include: tasks/flatpaks.yml + when: ansible_distribution != "FreeBSD" # FreeBSD Desktops and laptops - name: FreeBSD UI Setup hosts: workstation connection: local become: true - when: ansible_distribution == "FreeBSD" tasks: - include: tasks/freebsd_gui.yml + when: ansible_distribution == "FreeBSD" # Run hardness checks