mirror of
https://github.com/LnL7/nix-darwin.git
synced 2025-04-15 08:46:25 +00:00
Merge pull request #144 from kevingriffin/postgres-character-set
nix-darwin/postgresql: add character set config
This commit is contained in:
commit
7dec9686fb
1 changed files with 8 additions and 1 deletions
|
@ -61,6 +61,13 @@ in
|
|||
description = ''Data directory for PostgreSQL.'';
|
||||
};
|
||||
|
||||
characterSet = mkOption {
|
||||
type = types.string;
|
||||
default = "UTF8";
|
||||
example = "SJIS";
|
||||
description = ''Character set specified during initialization'';
|
||||
};
|
||||
|
||||
enableTCPIP = mkOption {
|
||||
type = types.bool;
|
||||
default = false;
|
||||
|
@ -101,7 +108,7 @@ in
|
|||
script = ''
|
||||
# Initialise the database.
|
||||
if ! test -e ${cfg.dataDir}/PG_VERSION; then
|
||||
initdb -U postgres -D ${cfg.dataDir}
|
||||
initdb -U postgres -D ${cfg.dataDir} -E ${cfg.characterSet}
|
||||
fi
|
||||
${pkgs.coreutils}/bin/ln -sfn ${configFile} ${cfg.dataDir}/postgresql.conf
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue