diff options
| author | Jimmy Olgeni <olgeni@FreeBSD.org> | 2001-05-02 11:44:38 +0000 | 
|---|---|---|
| committer | Jimmy Olgeni <olgeni@FreeBSD.org> | 2001-05-02 11:44:38 +0000 | 
| commit | 785d876b22bff3110d9733942b6fa9c49d6bb8b9 (patch) | |
| tree | 5bb40c6cba74fcff629ec80fc6c79d09edf9e791 /databases/postgresql84-server | |
| parent | Add NO_LATEST_LINK. (diff) | |
Cosmetic changes for the shutdown procedure.
* Pass the -s option to pg_ctl, to avoid clobbering the display.
  It will show error messages only.
* Echo the port name after shutdown.
No functional changes, no PORTREVISION.
Diffstat (limited to 'databases/postgresql84-server')
| -rw-r--r-- | databases/postgresql84-server/files/pgsql.sh.tmpl | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/databases/postgresql84-server/files/pgsql.sh.tmpl b/databases/postgresql84-server/files/pgsql.sh.tmpl index 46aff1eb4718..cd78771219ed 100644 --- a/databases/postgresql84-server/files/pgsql.sh.tmpl +++ b/databases/postgresql84-server/files/pgsql.sh.tmpl @@ -18,7 +18,8 @@ start)  stop)      [ -x ${PGBIN}/pg_ctl ] && { -	exec su -l pgsql -c 'exec %%PREFIX%%/%%PG_PREFIX%%bin/pg_ctl stop -m fast' +	su -l pgsql -c 'exec %%PREFIX%%/%%PG_PREFIX%%bin/pg_ctl stop -s -m fast' +	echo -n ' pgsql'      }      ;; | 
