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.
|
- # frozen_string_literal: true
-
- # Overide by Platform
- package_name =
- case platform[:family]
- # `linux` here is sufficient for `arch`
- when 'suse', 'linux'
- 'openssh'
- else
- 'openssh-server'
- end
-
- control 'openssh package' do
- title 'should be installed'
-
- only_if do
- platform.family != 'bsd'
- end
-
- describe package(package_name) do
- it { should be_installed }
- end
- end
|