From ed6daf4ea463dfbff391d834b8c5eaab174353ed Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 24 Nov 2009 17:07:23 +0000 Subject: [PATCH] * Doh! I lost ${flags} somewhere along the way, so Postgres wouldn't get the -i option anymore... svn path=/nixos/branches/upstart-0.6/; revision=18606 --- modules/services/databases/postgresql.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/services/databases/postgresql.nix b/modules/services/databases/postgresql.nix index cd1f9dc8094d..1e96483662ec 100644 --- a/modules/services/databases/postgresql.nix +++ b/modules/services/databases/postgresql.nix @@ -138,7 +138,7 @@ in # database is up, but it requires a `postgres' user to # exist. And we can't call `createuser' before the # database is running. - ${run} -c '${postgresql}/bin/pg_ctl start' + ${run} -c '${postgresql}/bin/pg_ctl start -o "${toString flags}"' # So wait until the server is running. while ! ${run} -c '${postgresql}/bin/pg_ctl status'; do