Saltstack Official PHP Formula
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- control 'Php package' do
- title 'should be installed'
-
- pkg_name =
- case os[:family]
- when 'debian'
- case os[:name]
- when 'ubuntu'
- 'php'
- when 'debian'
- 'php7.0'
- end
- when 'redhat', 'fedora'
- 'php'
- when 'suse'
- 'php5'
- end
-
- describe package(pkg_name) do
- it { should be_installed }
- end
- end
|