mirror of
https://github.com/saltstack-formulas/php-formula.git
synced 2025-04-10 23:01:44 +00:00
15 lines
251 B
Ruby
15 lines
251 B
Ruby
control 'Php package' do
|
|
title 'should be installed'
|
|
|
|
pkg_name =
|
|
case os[:family]
|
|
when 'debian', 'redhat', 'fedora'
|
|
'php'
|
|
when 'suse'
|
|
'php5'
|
|
end
|
|
|
|
describe package(pkg_name) do
|
|
it { should be_installed }
|
|
end
|
|
end
|