mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
a348e709cc
PR: 23371 Submitted by: maintainer
35 lines
749 B
Bash
35 lines
749 B
Bash
#!/bin/sh
|
|
|
|
# $FreeBSD$
|
|
#
|
|
# For postmaster startup options, edit $PGDATA/postmaster.opts.default
|
|
# Preinstalled options are -i -o "-F"
|
|
|
|
case $1 in
|
|
start)
|
|
[ -d !!PREFIX!!/pgsql/lib ] && /sbin/ldconfig -m !!PREFIX!!/pgsql/lib
|
|
[ -x !!PREFIX!!/pgsql/bin/pg_ctl ] && {
|
|
su -l pgsql -c \
|
|
'exec !!PREFIX!!/pgsql/bin/pg_ctl -w start > !!PREFIX!!/pgsql/errlog 2>&1'
|
|
echo -n ' pgsql'
|
|
}
|
|
;;
|
|
|
|
stop)
|
|
[ -x !!PREFIX!!/pgsql/bin/pg_ctl ] && {
|
|
exec su -l pgsql -c 'exec !!PREFIX!!/pgsql/bin/pg_ctl -w -m fast stop'
|
|
}
|
|
;;
|
|
|
|
status)
|
|
[ -x !!PREFIX!!/pgsql/bin/pg_ctl ] && {
|
|
exec su -l pgsql -c 'exec !!PREFIX!!/pgsql/bin/pg_ctl status'
|
|
}
|
|
;;
|
|
|
|
*)
|
|
echo "usage: `basename $0` {start|stop|status}" >&2
|
|
exit 64
|
|
;;
|
|
esac
|