2019-06-26 01:34:51 +02:00
|
|
|
control 'Php package' do
|
|
|
|
title 'should be installed'
|
|
|
|
|
|
|
|
pkg_name =
|
|
|
|
case os[:family]
|
2019-08-13 16:33:57 +02:00
|
|
|
when 'debian'
|
|
|
|
case os[:name]
|
|
|
|
when 'ubuntu'
|
|
|
|
'php'
|
|
|
|
when 'debian'
|
|
|
|
'php7.0'
|
|
|
|
end
|
|
|
|
when 'redhat', 'fedora'
|
2019-06-26 01:34:51 +02:00
|
|
|
'php'
|
|
|
|
when 'suse'
|
|
|
|
'php5'
|
|
|
|
end
|
|
|
|
|
|
|
|
describe package(pkg_name) do
|
|
|
|
it { should be_installed }
|
|
|
|
end
|
|
|
|
end
|