We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 50e28b5 commit 31ca8e8Copy full SHA for 31ca8e8
1 file changed
controls/package_spec.rb
@@ -80,8 +80,14 @@
80
impact 1.0
81
title 'Install auditd'
82
desc 'auditd provides extended logging capacities on recent distribution'
83
- describe package('auditd') do
84
- it { should be_installed }
+ if os.redhat?
+ describe package('audit') do
85
+ it { should be_installed }
86
+ end
87
+ else
88
+ describe package('auditd') do
89
90
91
end
92
describe auditd_conf do
93
its('log_file') { should cmp '/var/log/audit/audit.log' }
0 commit comments