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 <jayakornk@users.noreply.github.com>
Co-Authored-By: Andy Lauppe <andy@lauppe.org>
This commit is contained in:
Andy Lauppe 2026-02-05 10:58:05 -05:00
parent 925ce6e6f1
commit 40ebe90477

View File

@ -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