mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-14 13:39:15 +03:00
postgresql module: Use the default superuser username
PostgreSQL defaults to having 'postgres' as the superuser. NixOS should use this default name to provide a less surprising result to people who enable services.postgres.
This commit is contained in:
parent
f3ac3a265b
commit
2ea7c90839
1 changed files with 1 additions and 1 deletions
|
@ -190,7 +190,7 @@ in
|
|||
mkdir -m 0700 -p ${cfg.dataDir}
|
||||
if [ "$(id -u)" = 0 ]; then
|
||||
chown -R postgres ${cfg.dataDir}
|
||||
su -s ${pkgs.stdenv.shell} postgres -c 'initdb -U root'
|
||||
su -s ${pkgs.stdenv.shell} postgres -c initdb
|
||||
else
|
||||
# For non-root operation.
|
||||
initdb
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue