Explorar el Código

fix(tests): fix package name for debian

tags/v0.39.2
sticky-note hace 5 años
padre
commit
4f75eac5fe
Se han modificado 1 ficheros con 8 adiciones y 1 borrados
  1. +8
    -1
      test/integration/default/controls/package_spec.rb

+ 8
- 1
test/integration/default/controls/package_spec.rb Ver fichero

@@ -3,7 +3,14 @@ control 'Php package' do

pkg_name =
case os[:family]
when 'debian', 'redhat', 'fedora'
when 'debian'
case os[:name]
when 'ubuntu'
'php'
when 'debian'
'php7.0'
end
when 'redhat', 'fedora'
'php'
when 'suse'
'php5'

Cargando…
Cancelar
Guardar