summaryrefslogtreecommitdiff
path: root/databases/postgresql80-server/files/pgsql.sh.tmpl
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>1999-05-14 11:54:55 +0000
committercvs2svn <cvs2svn@FreeBSD.org>1999-05-14 11:54:55 +0000
commitb919b8311bc5d38e5731d40525c88c54816f4530 (patch)
tree35bbb3a9293cb7a160571b1bceb1ca2a52507a18 /databases/postgresql80-server/files/pgsql.sh.tmpl
parentDespite what I said before, this is the official INDEX file for (diff)
This commit was manufactured by cvs2svn to create tag 'RELEASE_3_2_0'.release/3.2.0
Diffstat (limited to 'databases/postgresql80-server/files/pgsql.sh.tmpl')
-rw-r--r--databases/postgresql80-server/files/pgsql.sh.tmpl25
1 files changed, 0 insertions, 25 deletions
diff --git a/databases/postgresql80-server/files/pgsql.sh.tmpl b/databases/postgresql80-server/files/pgsql.sh.tmpl
deleted file mode 100644
index ed6c54d18839..000000000000
--- a/databases/postgresql80-server/files/pgsql.sh.tmpl
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/bin/sh
-
-# $Id: pgsql.sh.tmpl,v 1.3 1997/10/05 21:00:49 andreas Exp $
-
-# pgsql.sh - postgresql startup file for FreeBSD and possibly *BSD (untested)
-
-# Changes:
-# - renamed startup script to be in sync with INSTALL file
-# - merged ldconfig start sequence from former postgrsql.sh script (andreas)
-# - modified the postmaster startup sequence as suggested in the
-# INSTALL file which was given as example for FreeBSD 2.2 (andreas)
-# - removed the commandline option
-# -D!!PREFIX!!/pgsql/data \
-# because the postmaster process, which starts up under the
-# environment of the pgsql user, sets this with the PGDATA
-# environment variable in !!PREFIX!!/pgsql/.profile
-#
-
-[ -d !!PREFIX!!/pgsql/lib ] && /sbin/ldconfig -m !!PREFIX!!/pgsql/lib
-
-[ -x !!PREFIX!!/pgsql/bin/postmaster ] && {
- su -l pgsql -c 'exec !!PREFIX!!/pgsql/bin/postmaster -i -S -o -F \
- -D!!PREFIX!!/pgsql/data > !!PREFIX!!/pgsql/errlog'
- echo -n ' pgsql'
-}