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:
parent
925ce6e6f1
commit
40ebe90477
@ -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
|
||||
|
||||
Loading…
Reference in New Issue
Block a user