Defined Type: postgresql::server::instance::late_initdb

Defined in:
manifests/server/instance/late_initdb.pp

Summary

Manage the default encoding when database initialization is managed by the package

Overview

Parameters:

  • encoding (Optional[String[1]]) (defaults to: $postgresql::server::encoding)

    Sets the default encoding for all databases created with this module. On certain operating systems this is also used during the template1 initialization, so it becomes a default outside of the module as well.

  • user (String[1]) (defaults to: $postgresql::server::user)

    Overrides the default PostgreSQL super user and owner of PostgreSQL related files in the file system.

  • group (String[1]) (defaults to: $postgresql::server::group)

    Overrides the default postgres user group to be used for related files in the file system.

  • psql_path (Stdlib::Absolutepath) (defaults to: $postgresql::server::psql_path)

    Specifies the path to the psql command.

  • port (Stdlib::Port) (defaults to: $postgresql::server::port)

    Specifies the port for the PostgreSQL server to listen on. Note: The same port number is used for all IP addresses the server listens on. Also, for Red Hat systems and early Debian systems, changing the port causes the server to come to a full stop before being able to make the change.

  • module_workdir (Stdlib::Absolutepath) (defaults to: $postgresql::server::module_workdir)

    Working directory for the PostgreSQL module



14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# File 'manifests/server/instance/late_initdb.pp', line 14

define postgresql::server::instance::late_initdb (
  Optional[String[1]]                       $encoding       = $postgresql::server::encoding,
  String[1]                                 $user           = $postgresql::server::user,
  String[1]                                 $group          = $postgresql::server::group,
  Stdlib::Absolutepath                      $psql_path      = $postgresql::server::psql_path,
  Stdlib::Port                              $port           = $postgresql::server::port,
  Stdlib::Absolutepath                      $module_workdir = $postgresql::server::module_workdir,
) {
  # Set the defaults for the postgresql_psql resource
  Postgresql_psql {
    psql_user  => $user,
    psql_group => $group,
    psql_path  => $psql_path,
    port       => $port,
    instance   => $name,
    cwd        => $module_workdir,
  }

  # [workaround]
  # by default pg_createcluster encoding derived from locale
  # but it do does not work by installing postgresql via puppet because puppet
  # always override LANG to 'C'
  postgresql_psql { "Set template1 encoding to ${encoding}":
    command => "UPDATE pg_database
      SET datistemplate = FALSE
      WHERE datname = 'template1'
      ;
      UPDATE pg_database
      SET encoding = pg_char_to_encoding('${encoding}'), datistemplate = TRUE
      WHERE datname = 'template1'",
    unless  => "SELECT datname FROM pg_database WHERE
      datname = 'template1' AND encoding = pg_char_to_encoding('${encoding}')",
    before  => Anchor["postgresql::server::service::end::${name}"],
  }
}