Skip to content

Commit

Permalink
add squeeze to initdb command
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonHoenscheid committed Jun 28, 2023
1 parent a2f939f commit f8a933c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion manifests/server/instance/initdb.pp
Expand Up @@ -168,7 +168,7 @@
default => "-X '${xlogdir}'"
}

$initdb_command = "${initdb_path} ${auth_host_parameter} ${auth_local_parameter } ${data_checksums_parameter} ${datadir_parameter} ${encoding_parameter} ${lc_messages_parameter} ${locale_parameter} ${username_parameter} ${xlogdir_parameter}" # lint:ignore:140chars
$initdb_command = stdlib::squeeze("${initdb_path} ${auth_host_parameter} ${auth_local_parameter} ${data_checksums_parameter} ${datadir_parameter} ${encoding_parameter} ${lc_messages_parameter} ${locale_parameter} ${username_parameter} ${xlogdir_parameter}", ' ') # lint:ignore:140chars

# This runs the initdb command, we use the existance of the PG_VERSION
# file to ensure we don't keep running this command.
Expand Down

0 comments on commit f8a933c

Please sign in to comment.