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

17 行
297B

  1. syslogng_service =
  2. case platform[:name]
  3. when 'arch'
  4. 'syslog-ng@default.service'
  5. else
  6. 'syslog-ng'
  7. end
  8. control 'SyslogNG service' do
  9. title 'should be running and enabled'
  10. describe service(syslogng_service) do
  11. it { should be_enabled }
  12. it { should be_running }
  13. end
  14. end