php: Added more packages

This commit is contained in:
Ossi Salmi 2013-06-16 02:10:04 +03:00
parent fc12e7e03e
commit 36205c0548

View file

@ -53,3 +53,79 @@ class php::pdo {
} }
# Install DBA suppor to PHP
#
class php::dba {
package { "php-dba":
ensure => installed,
}
}
# Install IMAP support to PHP
#
class php::imap {
package { "php-imap":
ensure => installed,
}
}
# Install LDAP support to PHP
#
class php::ldap {
package { "php-ldap":
ensure => installed,
}
}
# Install Multibyte String support to PHP
#
class php::mbstring {
package { "php-mbstring":
ensure => installed,
}
}
# Install Mcrypt support to PHP
#
class php::mcrypt {
package { "php-mcrypt":
ensure => installed,
}
}
# Install PEAR support to PHP
#
class php::pear {
package { "php-pear":
ensure => installed,
}
}
# Install XML support to PHP
#
class php::xml {
package { "php-xml":
ensure => installed,
}
}