Saltstack Official Salt Formula
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 line
340B

  1. # frozen_string_literal: true
  2. version =
  3. case platform[:family]
  4. when 'debian'
  5. '3000.2+ds-1'
  6. end
  7. control 'salt packages' do
  8. title 'should be installed'
  9. %w[
  10. salt-master
  11. salt-minion
  12. ].each do |p|
  13. describe package(p) do
  14. it { should be_installed }
  15. its('version') { should eq version }
  16. end
  17. end
  18. end