From 9a81434b7ee2ccaaa9bfac93a6b46c88f0db2a12 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timo=20M=E4kinen?= Date: Sun, 12 May 2013 11:26:15 +0300 Subject: [PATCH] php: Added pgsql support --- php/manifests/init.pp | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/php/manifests/init.pp b/php/manifests/init.pp index fb04aaa..f25e449 100644 --- a/php/manifests/init.pp +++ b/php/manifests/init.pp @@ -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 {