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.

17 lines
281B

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