aboutsummaryrefslogtreecommitdiffstats
path: root/databases/postgresql73
diff options
context:
space:
mode:
authorolgeni <olgeni@FreeBSD.org>2001-05-02 19:44:38 +0800
committerolgeni <olgeni@FreeBSD.org>2001-05-02 19:44:38 +0800
commit338e5b4ec31c3b101a6861433594f711b997473c (patch)
treeb0eb645a17b11f1bd7abdb2b75a4a49e644025e6 /databases/postgresql73
parent6929b5e0698d13dd1ebe67758e12adc7547c3485 (diff)
downloadfreebsd-ports-gnome-338e5b4ec31c3b101a6861433594f711b997473c.tar.gz
freebsd-ports-gnome-338e5b4ec31c3b101a6861433594f711b997473c.tar.zst
freebsd-ports-gnome-338e5b4ec31c3b101a6861433594f711b997473c.zip
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/postgresql73')
-rw-r--r--databases/postgresql73/files/pgsql.sh.tmpl3
1 files changed, 2 insertions, 1 deletions
diff --git a/databases/postgresql73/files/pgsql.sh.tmpl b/databases/postgresql73/files/pgsql.sh.tmpl
index 46aff1eb4718..cd78771219ed 100644
--- a/databases/postgresql73/files/pgsql.sh.tmpl
+++ b/databases/postgresql73/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'
}
;;