fix(tests): fix package name for debian

This commit is contained in:
sticky-note 2019-08-14 01:33:57 +11:00
parent 7e30f926b5
commit 4f75eac5fe

View File

@ -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'