Sha256: cdf23e359f0876375b9dc168a57d516f3948340853da363241dbba26844acb79

Contents?: true

Size: 435 Bytes

Versions: 6

Compression:

Stored size: 435 Bytes

Contents

# This resource manages a pg_hba file, collecting fragments of pg_hba_rules
# to build up the final file.
define postgresql::pg_hba(
  $target = $postgresql::params::pg_hba_conf_path,
  $owner = 0,
  $group = $postgresql::params::group
) {
  include postgresql::params
  include concat::setup

  # Collect file from fragments
  concat { $target:
    owner => $owner,
    group => $group,
    mode  => '0640',
    warn  => true,
  }

}

Version data entries

6 entries across 6 versions & 1 rubygems

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