mirror of
https://github.com/saltstack-formulas/salt-formula.git
synced 2024-11-29 04:54:12 +01:00
27 lines
439 B
Ruby
27 lines
439 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
pkgs =
|
||
|
case system.platform[:name]
|
||
|
when 'arch'
|
||
|
%w[salt]
|
||
|
when /bsd$/
|
||
|
%w[py37-salt]
|
||
|
when 'windows'
|
||
|
%w[Salt\ Minion]
|
||
|
else
|
||
|
%w[salt-master salt-minion]
|
||
|
end
|
||
|
|
||
|
control 'salt packages' do
|
||
|
title 'should be installed'
|
||
|
|
||
|
version = '3003'
|
||
|
|
||
|
pkgs.each do |p|
|
||
|
describe package(p) do
|
||
|
it { should be_installed }
|
||
|
its('version') { should match(/^#{version}/) }
|
||
|
end
|
||
|
end
|
||
|
end
|