mirror of
https://github.com/saltstack-formulas/salt-formula.git
synced 2025-04-17 10:10:29 +00:00

Use py3 for latest salt version Use Python 2 on old distros Update Gemfile Updated centos-6 run_command, as it does not use systemd Added tests to verify correct package versions for all cases tested
14 lines
264 B
Ruby
14 lines
264 B
Ruby
control 'salt services' do
|
|
title 'should be running'
|
|
|
|
describe service('salt-master') do
|
|
it { should be_enabled }
|
|
it { should be_running }
|
|
end
|
|
|
|
describe service('salt-minion') do
|
|
it { should be_enabled }
|
|
it { should be_running }
|
|
end
|
|
|
|
end
|