59c1cbfbf8
This is a very very large change to the module. It started out as a fix to add postgresl::server::config_entry, and quickly became a rewrite to fix a lot of ordering issues inherent in the API. Since this changes the Public API it is considered a backwards compatible change. See the upgrading guide in README.md for more details as to what has been modified in this patch. Signed-off-by: Ken Barber <ken@bob.sh>
13 lines
391 B
Puppet
13 lines
391 B
Puppet
# Install the contrib postgresql packaging. See README.md for more details.
|
|
class postgresql::contrib (
|
|
$package_name = $postgresql::params::contrib_package_name,
|
|
$package_ensure = 'present'
|
|
) inherits postgresql::params {
|
|
validate_string($package_name)
|
|
|
|
package { 'postgresql-contrib':
|
|
ensure => $package_ensure,
|
|
name => $package_name,
|
|
tag => 'postgresql',
|
|
}
|
|
}
|