module-postgresql/manifests/init.pp
2013-01-11 14:23:56 -08:00

22 lines
436 B
Puppet

# Class: postgresql
#
# This class installs postgresql client software.
#
# *Note* don't forget to make sure to add any necessary yum or apt
# repositories if specifying a custom version.
#
# Parameters:
# [*version*] - The postgresql version to install.
# Actions:
#
# Requires:
#
# Sample Usage:
#
class postgresql (
$version = $::postgres_default_version,
) {
class { 'postgresql::params':
version => $version,
}
}