Saltstack Official Logrotate Formula
No puede seleccionar más de 25 temas
Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
|
- # encoding: utf-8
-
- title 'Test logrotate installation'
-
- describe package('logrotate') do
- it { should be_installed }
- end
-
- describe file('/etc/logrotate.conf') do
- it { should exist }
- it { should be_owned_by 'root' }
- it { should be_grouped_into 'root' }
- its('mode') { should cmp '0644' }
- end
-
- describe file('/etc/logrotate.d') do
- it { should be_directory }
- it { should be_owned_by 'root' }
- it { should be_grouped_into 'root' }
- its('mode') { should cmp '0755' }
- end
-
- describe service('cron') do
- it { should be_installed }
- it { should be_enabled }
- it { should be_running }
- end
|