Przeglądaj źródła
Merge pull request #174 from myii/test/prevent-package-control-for-bsd
test(packages_spec): prevent control for `bsd` family
tags/v0.43.1
Imran Iqbal
4 lat temu
Brak konta powiązanego z adresem e-mail autora
1 zmienionych plików z
11 dodań i
4 usunięć
-
test/integration/default/controls/packages_spec.rb
|
|
@@ -1,12 +1,19 @@ |
|
|
|
# Overide by Platform |
|
|
|
package_name = 'openssh-server' |
|
|
|
if platform[:family] == 'suse' |
|
|
|
package_name = 'openssh' |
|
|
|
end |
|
|
|
package_name = |
|
|
|
case platform[:family] |
|
|
|
when 'suse' |
|
|
|
'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 |