forked from chef-boneyard/cookbooks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmetadata.rb
29 lines (27 loc) · 1.36 KB
/
metadata.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
maintainer "Opscode, Inc."
maintainer_email "[email protected]"
license "Apache 2.0"
description "Installs and maintains php and php modules"
version "0.9.2"
depends "apache2"
recipe "php", "Empty, use one of the other recipes"
recipe "php::module_apc", "Install the php5-apc package"
recipe "php::module_curl", "Install the php5-curl package"
recipe "php::module_fileinfo", "Install the php5-fileinfo package"
recipe "php::module_fpdf", "Install the php-fpdf package"
recipe "php::module_gd", "Install the php5-gd package"
recipe "php::module_ldap", "Install the php5-ldap package"
recipe "php::module_memcache", "Install the php5-memcache package"
recipe "php::module_mysql", "Install the php5-mysql package"
recipe "php::module_pgsql", "Install the php5-pgsql packag"
recipe "php::module_sqlite3", "Install the php5-sqlite3 package"
recipe "php::pear", "Install the php-pear package"
recipe "php::php4", "Install packages for PHP version 4"
recipe "php::php5-cgi", "Install the php5-cgi package"
recipe "php::php5", "Install php5 packages and php.ini config file"
%w{ubuntu debian}.each do |os|
supports os
end
%w{centos redhat fedora suse}.each do |os|
supports os
end