Skip to content

Commit 58810fe

Browse files
authored
Merge pull request dev-sec#51 from iamthemuffinman/master
auditd package is called audit in the rhel family
2 parents 50e28b5 + 50f719d commit 58810fe

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

controls/package_spec.rb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,8 @@
8080
impact 1.0
8181
title 'Install auditd'
8282
desc 'auditd provides extended logging capacities on recent distribution'
83-
describe package('auditd') do
83+
audit_pkg = os.redhat? ? 'audit' : 'auditd'
84+
describe package(audit_pkg) do
8485
it { should be_installed }
8586
end
8687
describe auditd_conf do

0 commit comments

Comments
 (0)