Puppet Class: php::install::pgsql
- Defined in:
- manifests/install/pgsql.pp
Overview
Class: php::install::pgsql
Install php pgsql bindings
6 7 8 9 10 11 12 13 14 15 |
# File 'manifests/install/pgsql.pp', line 6
class php::install::pgsql {
include ::php::params
package { 'php-php5-pgsql':
ensure => installed,
name => $::php::params::php_pgsql_package_name,
require => Class['php::install'],
}
}
|