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.

123456789101112131415
  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_enabled }
  10. it { should be_running }
  11. end
  12. end
  13. end