Merge pull request #51 from iamthemuffinman/master

auditd package is called audit in the rhel family
This commit is contained in:
Christoph Hartmann 2017-02-16 17:59:06 +01:00 committed by GitHub
commit 58810fec3c

View file

@ -80,7 +80,8 @@ control 'package-08' do
impact 1.0
title 'Install auditd'
desc 'auditd provides extended logging capacities on recent distribution'
describe package('auditd') do
audit_pkg = os.redhat? ? 'audit' : 'auditd'
describe package(audit_pkg) do
it { should be_installed }
end
describe auditd_conf do