Sha256: 670cdad25c2c5a6b6794406fc635c38fa9ea3b1ec4dd53ee54ce82deef7b0df9

Contents?: true

Size: 700 Bytes

Versions: 6

Compression:

Stored size: 700 Bytes

Contents

# Class: postgresql::client
#
#   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:
#   [*package_name*]  - The name of the postgresql client package.
#   [*ensure*] - the ensure parameter passed to the postgresql client package resource
# Actions:
#
# Requires:
#
# Sample Usage:
#
class postgresql::client (
  $package_name   = $postgresql::params::client_package_name,
  $package_ensure = 'present'
) inherits postgresql::params {

  package { 'postgresql-client':
    ensure  => $package_ensure,
    name    => $package_name,
    tag     => 'postgresql',
  }

}

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
freighthop-0.0.6 modules/postgresql/manifests/client.pp
freighthop-0.0.5 modules/postgresql/manifests/client.pp
freighthop-0.0.4 modules/postgresql/manifests/client.pp
freighthop-0.0.3 modules/postgresql/manifests/client.pp
freighthop-0.0.2 modules/postgresql/manifests/client.pp
freighthop-0.0.1 modules/postgresql/manifests/client.pp