diff options
author | Bruce Momjian | 2010-02-23 22:17:25 +0000 |
---|---|---|
committer | Bruce Momjian | 2010-02-23 22:17:25 +0000 |
commit | c4fc082a5ac11c1206ed6707e3644914db36c6c3 (patch) | |
tree | d91f590167a782d497badd02da78a383e5011680 | |
parent | 1f0cf56be2b3289a1d46c503bbaef602720a3fe7 (diff) |
Modify freebsd start script to just exit 0 with message.
-rw-r--r-- | contrib/start-scripts/freebsd | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/contrib/start-scripts/freebsd b/contrib/start-scripts/freebsd index 7e9b103ec09..e7338c03324 100644 --- a/contrib/start-scripts/freebsd +++ b/contrib/start-scripts/freebsd @@ -6,7 +6,7 @@ # Created through merger of the Linux start script by Ryan Kirkpatrick # and the script in the FreeBSD ports collection. -# $PostgreSQL: pgsql/contrib/start-scripts/freebsd,v 1.6 2010/02/23 22:15:35 momjian Exp $ +# $PostgreSQL: pgsql/contrib/start-scripts/freebsd,v 1.7 2010/02/23 22:17:25 momjian Exp $ ## EDIT FROM HERE @@ -39,10 +39,7 @@ PGCTL="$prefix/bin/pg_ctl" test -x $DAEMON || { echo "$DAEMON not found" - if [ "$1" = "stop" ] - then exit 0 - else exit 5 - fi + exit 0 } case $1 in |