php: Added pgsql support

This commit is contained in:
Timo Mkinen 2013-05-12 11:26:15 +03:00
parent 1eea65b28c
commit 9a81434b7e

View file

@ -32,6 +32,17 @@ class php::mysql {
}
# Install PostgreSQL support to PHP
#
class php::pgsql {
package { "php-pgsql":
ensure => installed,
}
}
# Install PDO database abstraction support to PHP
#
class php::pdo {