Saltstack Official Syslog-NG Formula
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

18 行
324B

  1. # encoding: utf-8
  2. title 'Test SyslogNG installation'
  3. describe package('syslog-ng') do
  4. it { should be_installed }
  5. end
  6. describe file('/etc/syslog-ng/syslog-ng.conf') do
  7. it { should exist }
  8. end
  9. describe sysv_service('syslog-ng') do
  10. it { should be_installed }
  11. it { should be_enabled }
  12. it { should be_running }
  13. end