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

15 行
264B

  1. control 'salt services' do
  2. title 'should be running'
  3. describe service('salt-master') do
  4. it { should be_enabled }
  5. it { should be_running }
  6. end
  7. describe service('salt-minion') do
  8. it { should be_enabled }
  9. it { should be_running }
  10. end
  11. end