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.

14 lines
217B

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