Sha256: 6009b7452665352db8fa69883f12c264c0a0439a49188abe326a36f32c217fe2

Contents?: true

Size: 641 Bytes

Versions: 6

Compression:

Stored size: 641 Bytes

Contents

class { 'postgresql::server':
    config_hash => {
        'ip_mask_deny_postgres_user' => '0.0.0.0/32',
        'ip_mask_allow_all_users'    => '0.0.0.0/0',
        'listen_addresses'           => '*',
        'manage_redhat_firewall'     => true,
        'postgres_password'          => 'postgres',
    },
}

postgresql::database{ ['test1', 'test2', 'test3']:
  # TODO: ensure not yet supported
  #ensure  => present,
  charset => 'utf8',
  require => Class['postgresql::server'],
}
postgresql::database{ 'test4':
  # TODO: ensure not yet supported
  #ensure  => present,
  charset => 'latin1',
  require => Class['postgresql::server'],
}

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
freighthop-0.0.6 modules/postgresql/examples/postgresql_database.pp
freighthop-0.0.5 modules/postgresql/examples/postgresql_database.pp
freighthop-0.0.4 modules/postgresql/examples/postgresql_database.pp
freighthop-0.0.3 modules/postgresql/examples/postgresql_database.pp
freighthop-0.0.2 modules/postgresql/examples/postgresql_database.pp
freighthop-0.0.1 modules/postgresql/examples/postgresql_database.pp