b2d760cd87
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
15 lines
264 B
Ruby
15 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
|