Puppet Class: postgresql::pgbouncer::install
- Inherits:
- postgresql::pgbouncer
- Defined in:
- manifests/pgbouncer/install.pp
Overview
1 2 3 4 5 6 7 8 9 10 |
# File 'manifests/pgbouncer/install.pp', line 1
class postgresql::pgbouncer::install inherits postgresql::pgbouncer {
if($postgresql::pgbouncer::manage_package)
{
package { $postgresql::params::pgbouncer_package_name:
ensure => $postgresql::pgbouncer::package_ensure,
}
}
}
|