5917569464
* https://docs.saltstack.com/en/latest/topics/releases/3000.3.html * https://docs.saltstack.com/en/latest/topics/releases/2019.2.5.html
22 lines
340 B
Ruby
22 lines
340 B
Ruby
# frozen_string_literal: true
|
|
|
|
version =
|
|
case platform[:family]
|
|
when 'debian'
|
|
'3000.3+ds-1'
|
|
end
|
|
|
|
control 'salt packages' do
|
|
title 'should be installed'
|
|
|
|
%w[
|
|
salt-master
|
|
salt-minion
|
|
].each do |p|
|
|
describe package(p) do
|
|
it { should be_installed }
|
|
its('version') { should eq version }
|
|
end
|
|
end
|
|
end
|