Saltstack Official OpenSSH Formula
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

packages_spec.rb 311B

1234567891011121314151617181920
  1. # Overide by Platform
  2. package_name =
  3. case platform[:family]
  4. when 'suse'
  5. 'openssh'
  6. else
  7. 'openssh-server'
  8. end
  9. control 'openssh package' do
  10. title 'should be installed'
  11. only_if do
  12. platform.family != 'bsd'
  13. end
  14. describe package(package_name) do
  15. it { should be_installed }
  16. end
  17. end