adding Inspec tests for raw content jobs
This commit is contained in:
parent
4ac8535dd7
commit
364ef833cc
1 changed files with 18 additions and 0 deletions
|
@ -51,3 +51,21 @@ describe file('/etc/logrotate.d/syslog') do
|
||||||
its('content') { should include 'sharedscripts' }
|
its('content') { should include 'sharedscripts' }
|
||||||
end
|
end
|
||||||
|
|
||||||
|
describe file('/etc/logrotate.d/nginx') 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/nginx/*.log' }
|
||||||
|
its('content') { should include 'weekly' }
|
||||||
|
its('content') { should include 'missingok' }
|
||||||
|
its('content') { should include 'compress' }
|
||||||
|
its('content') { should include 'delaycompress' }
|
||||||
|
its('content') { should include 'prerotate' }
|
||||||
|
its('content') { should include 'if [ -d /etc/logrotate.d/httpd-prerotate ]; then \\' }
|
||||||
|
its('content') { should include ' run-parts /etc/logrotate.d/httpd-prerotate; \\' }
|
||||||
|
its('content') { should include ' fi \\' }
|
||||||
|
its('content') { should include 'postrotate' }
|
||||||
|
its('content') { should include ' invoke-rc.d nginx rotate >/dev/null 2>&1' }
|
||||||
|
|
||||||
|
end
|
||||||
|
|
Loading…
Reference in a new issue