b475e24638
Modify the `default` suite to use the `saltmajorversion` InSpec input rather than the `version` variable in `pkgs_spec.rb`.
25 lines
436 B
Ruby
25 lines
436 B
Ruby
# frozen_string_literal: true
|
|
|
|
pkgs =
|
|
case system.platform[:name]
|
|
when 'arch'
|
|
%w[salt]
|
|
when /bsd$/
|
|
%w[py38-salt]
|
|
when 'windows'
|
|
['Salt Minion']
|
|
else
|
|
%w[salt-master salt-minion]
|
|
end
|
|
|
|
control 'salt packages' do
|
|
title 'should be installed'
|
|
|
|
pkgs.each do |p|
|
|
describe package(p) do
|
|
it { should be_installed }
|
|
its('version') { should match(/^#{input('saltmajorversion')}/) }
|
|
end
|
|
end
|
|
end
|