From f6a476bd30a0b97dcf94f2695ccfb075a294eca9 Mon Sep 17 00:00:00 2001 From: Alexandre Rousseau Date: Fri, 17 Jan 2025 11:17:15 -0500 Subject: [PATCH] fix arch name to match ansible provided arch --- tasks/auditd.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/auditd.yml b/tasks/auditd.yml index 48888be..5491f28 100644 --- a/tasks/auditd.yml +++ b/tasks/auditd.yml @@ -14,7 +14,7 @@ group: root mode: "0640" vars: - supported_syscalls: "{{ lookup('file', 'syscalls/table/syscalls-' + ansible_architecture , errors='ignore') | default(lookup('file', 'syscalls/table/syscalls-all') }}" + supported_syscalls: "{{ lookup('file', 'syscalls/table/syscalls-' + ansible_architecture , errors='ignore') }}" register: discovered_audit_rules_updated notify: - Auditd rules reload