bdf6c0b84c
- left longer than 80 char warnings - left inherits params class warnings
24 lines
457 B
Puppet
24 lines
457 B
Puppet
# Class: postgresql
|
|
#
|
|
# This class installs postgresql client software.
|
|
#
|
|
# Parameters:
|
|
# [*client_package_name*] - The name of the postgresql client package.
|
|
#
|
|
# Actions:
|
|
#
|
|
# Requires:
|
|
#
|
|
# Sample Usage:
|
|
#
|
|
class postgresql (
|
|
$package_name = $postgresql::params::client_package_name,
|
|
$package_ensure = 'present'
|
|
) inherits postgresql::params {
|
|
|
|
package { 'postgresql_client':
|
|
ensure => $package_ensure,
|
|
name => $package_name,
|
|
}
|
|
|
|
}
|