mirror of
https://github.com/dev-sec/linux-baseline
synced 2024-11-23 03:33:02 +00:00
On SUSE environments 'auditd' is part of package 'audit'
This commit is contained in:
parent
21b6d82a2f
commit
c439a23d3b
1 changed files with 1 additions and 1 deletions
|
@ -80,7 +80,7 @@ control 'package-08' do
|
|||
impact 1.0
|
||||
title 'Install auditd'
|
||||
desc 'auditd provides extended logging capacities on recent distribution'
|
||||
audit_pkg = os.redhat? ? 'audit' : 'auditd'
|
||||
audit_pkg = os.redhat? || os.suse? ? 'audit' : 'auditd'
|
||||
describe package(audit_pkg) do
|
||||
it { should be_installed }
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue