Saltstack Official Salt Formula
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
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