2
0
salt-formula/test/integration/default/controls/service_spec.rb
Imran Iqbal b475e24638
test: centralise all suites into default suite
Modify the `default` suite to use the `saltmajorversion` InSpec input
rather than the `version` variable in `pkgs_spec.rb`.
2021-11-17 21:53:19 +00:00

24 lines
421 B
Ruby

# frozen_string_literal: true
services =
case system.platform[:family]
when 'bsd'
%w[salt_master salt_minion]
when 'windows'
%w[salt-minion]
else
%w[salt-master salt-minion]
end
control 'salt services' do
title 'should be running'
services.each do |p|
describe service(p) do
it { should be_installed }
it { should be_enabled }
it { should be_running }
end
end
end