From 40ebe90477da44dd56a95ce9979d6357a8d2fa86 Mon Sep 17 00:00:00 2001 From: Andy Lauppe Date: Thu, 5 Feb 2026 10:58:05 -0500 Subject: [PATCH] Install ACL package for privilege escalation on Linux Simplified condition from `is_linux and not is_macos` to `is_linux` since these are mutually exclusive (is_linux checks for Debian family). Co-Authored-By: Jayakorn Karikan Co-Authored-By: Andy Lauppe --- playbook.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/playbook.yml b/playbook.yml index b0462a5..b4bec51 100644 --- a/playbook.yml +++ b/playbook.yml @@ -51,7 +51,7 @@ ansible.builtin.package: name: acl state: present - when: is_linux and not is_macos + when: is_linux - name: Check if running as root ansible.builtin.command: id -u