0
0
mirror of https://github.com/saltstack-formulas/salt-formula.git synced 2025-03-01 23:45:17 +01:00

23 lines
452 B
Ruby
Raw Normal View History

case os[:name]
when 'centos'
version = '2019.2.0-1.el7'
when 'fedora'
version = '2019.2.0-1.fc29'
when 'debian', 'ubuntu'
version = '2019.2.0+ds-1'
end
control 'salt packages' do
title 'should be installed'
describe package('salt-master') do
it { should be_installed }
its('version') { should eq version }
end
describe package('salt-minion') do
it { should be_installed }
its('version') { should eq version }
end
end