53 lines
2 KiB
Ruby
53 lines
2 KiB
Ruby
# encoding: utf-8
|
|
|
|
title 'Test logrotate jobs configuration'
|
|
|
|
describe file('/etc/logrotate.d/error') do
|
|
it { should be_file }
|
|
it { should be_owned_by 'root' }
|
|
it { should be_grouped_into 'root' }
|
|
its('mode') { should cmp '0644' }
|
|
# FIXME
|
|
#its('content') { should include '/tmp/var/log/mysql/error' }
|
|
its('content') { should include 'weekly' }
|
|
its('content') { should include 'missingok' }
|
|
its('content') { should include 'rotate 52' }
|
|
its('content') { should include 'compress' }
|
|
its('content') { should include 'delaycompress' }
|
|
its('content') { should include 'notifempty' }
|
|
its('content') { should include 'create 640 root adm' }
|
|
its('content') { should include 'sharedscripts' }
|
|
end
|
|
|
|
describe file('/etc/logrotate.d/mysql') do
|
|
it { should be_file }
|
|
it { should be_owned_by 'root' }
|
|
it { should be_grouped_into 'root' }
|
|
its('mode') { should cmp '0644' }
|
|
its('content') { should include '/tmp/var/log/mysql/*.log' }
|
|
its('content') { should include 'weekly' }
|
|
its('content') { should include 'missingok' }
|
|
its('content') { should include 'rotate 52' }
|
|
its('content') { should include 'compress' }
|
|
its('content') { should include 'delaycompress' }
|
|
its('content') { should include 'notifempty' }
|
|
its('content') { should include 'create 640 root adm' }
|
|
its('content') { should include 'sharedscripts' }
|
|
end
|
|
|
|
describe file('/etc/logrotate.d/syslog') do
|
|
it { should be_file }
|
|
it { should be_owned_by 'root' }
|
|
it { should be_grouped_into 'root' }
|
|
its('mode') { should cmp '0644' }
|
|
its('content') { should include '/var/log/cron' }
|
|
its('content') { should include '/var/log/maillog' }
|
|
its('content') { should include '/var/log/messages' }
|
|
its('content') { should include '/var/log/secure' }
|
|
its('content') { should include '/var/log/spooler' }
|
|
its('content') { should include '/var/log/slapd.log' }
|
|
its('content') { should include 'sharedscripts' }
|
|
its('content') { should include 'postrotate' }
|
|
its('content') { should include 'sharedscripts' }
|
|
end
|
|
|