Saltstack Official OpenSSH 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.

14 lines
254B

  1. # Overide by Platform
  2. package_name = 'openssh-server'
  3. if platform[:family] == 'suse'
  4. package_name = 'openssh'
  5. end
  6. control 'openssh package' do
  7. title 'should be installed'
  8. describe package(package_name) do
  9. it { should be_installed }
  10. end
  11. end