control 'package-07' do
impact 1.0
title 'Install syslog server package'
desc 'Syslog server is required to receive system and applications logs'
# Fedora doesn't install with a syslogger out of the box and instead uses
# systemd journal; as there is there is no affinity towards either rsyslog
# or syslog-ng, we'll skip this check on Fedora hosts.
only_if { os.name != 'fedora' && !container_execution }
describe package(val_syslog_pkg) do
it { should be_installed }
end
end
I propose to remove package-07 test:
Reasons: