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

23 行
342B

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