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.

13 lines
190B

  1. control 'salt packages' do
  2. title 'should be installed'
  3. %w(
  4. salt-master
  5. salt-minion
  6. ).each do |p|
  7. describe package(p) do
  8. it { should be_installed }
  9. end
  10. end
  11. end