Merge branch 'postgresql-user' of git://github.com/ocharles/nixpkgs

postgresql module: Use the default superuser username
This commit is contained in:
Shea Levy 2014-03-15 13:29:52 -04:00
commit 6cc0cc7ff6

View File

@ -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