Saltstack Official Logrotate Formula
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

28 行
596B

  1. # encoding: utf-8
  2. title 'Test logrotate installation'
  3. describe package('logrotate') do
  4. it { should be_installed }
  5. end
  6. describe file('/etc/logrotate.conf') do
  7. it { should exist }
  8. it { should be_owned_by 'root' }
  9. it { should be_grouped_into 'root' }
  10. its('mode') { should cmp '0644' }
  11. end
  12. describe file('/etc/logrotate.d') do
  13. it { should be_directory }
  14. it { should be_owned_by 'root' }
  15. it { should be_grouped_into 'root' }
  16. its('mode') { should cmp '0755' }
  17. end
  18. describe service('cron') do
  19. it { should be_installed }
  20. it { should be_enabled }
  21. it { should be_running }
  22. end