diff options
author | Sergey A. Osokin <osa@FreeBSD.org> | 2003-06-11 23:25:24 +0000 |
---|---|---|
committer | Sergey A. Osokin <osa@FreeBSD.org> | 2003-06-11 23:25:24 +0000 |
commit | 861994e7a0595418fe54191ce90c906c78fbdd5f (patch) | |
tree | 7216433615c9cf510b3061fd4914d23eef91de29 /databases/postgresql91-server/files | |
parent | Add evilfinder, a program which determines the evilness of things. (diff) |
The control script that ships with the postgres
port (files/pgsql.sh.tmpl) lacks a parameter in the
restart option, causing logs to be send to stdout,
instead of the log file.
Submitted by: Fernando Schapachnik <fernando@mecon.gov.ar>
Approved by: maintainer
PR: 53142
Approved by: fjoe (implicit)
Diffstat (limited to 'databases/postgresql91-server/files')
-rw-r--r-- | databases/postgresql91-server/files/pgsql.sh.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/databases/postgresql91-server/files/pgsql.sh.tmpl b/databases/postgresql91-server/files/pgsql.sh.tmpl index 98311c868ac3..0d85d6fba25d 100644 --- a/databases/postgresql91-server/files/pgsql.sh.tmpl +++ b/databases/postgresql91-server/files/pgsql.sh.tmpl @@ -32,7 +32,7 @@ stop) restart) [ -x ${PGBIN}/pg_ctl ] && { - exec su -l pgsql -c "exec ${PREFIX}/bin/pg_ctl restart -s -m fast" + exec su -l pgsql -c "exec ${PREFIX}/bin/pg_ctl restart -s -m fast -l ${logfile}" } ;; |