aboutsummaryrefslogtreecommitdiff
path: root/databases/postgresql-devel-server/files/pgsql.sh.tmpl
diff options
context:
space:
mode:
authorAndreas Klemm <andreas@FreeBSD.org>1998-04-21 21:52:10 +0000
committerAndreas Klemm <andreas@FreeBSD.org>1998-04-21 21:52:10 +0000
commit36f89aec96a7e05ab98027269654b5437626b6a2 (patch)
treeadbe637cc1fe207c2ef0a21244a7b8df91b413fd /databases/postgresql-devel-server/files/pgsql.sh.tmpl
parenta742a4fdb0f5b61774f378fe5caab4d0759be55e (diff)
downloadports-36f89aec96a7e05ab98027269654b5437626b6a2.tar.gz
ports-36f89aec96a7e05ab98027269654b5437626b6a2.zip
Upgrade postgresql to version 6.3.2
Many bugfixes and cosmetic changes Changes by Scrappy and me My additional changes: - had to link libpgtcl.so with the crypt library to get rid of the pgaccess error message, that crypt is missing - had to add -i option in the startup script, so that pgaccess is able to connect to the postmaster process - removed all unnecessary patches - updated PLIST Thanks to the postgresql developement team, who did a great job to simplify the postgresql port, by applying the patches and making the autoconf mechanism more consistent. Submitted by: The Hermit Hacker <scrappy@hub.org>
Notes
Notes: svn path=/head/; revision=10625
Diffstat (limited to 'databases/postgresql-devel-server/files/pgsql.sh.tmpl')
-rw-r--r--databases/postgresql-devel-server/files/pgsql.sh.tmpl6
1 files changed, 3 insertions, 3 deletions
diff --git a/databases/postgresql-devel-server/files/pgsql.sh.tmpl b/databases/postgresql-devel-server/files/pgsql.sh.tmpl
index 9fd81e4ff367..ed6c54d18839 100644
--- a/databases/postgresql-devel-server/files/pgsql.sh.tmpl
+++ b/databases/postgresql-devel-server/files/pgsql.sh.tmpl
@@ -1,6 +1,6 @@
#!/bin/sh
-# $Id: pgsql.sh.tmpl,v 1.2 1997/10/03 18:26:54 andreas Exp $
+# $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)
@@ -19,7 +19,7 @@
[ -d !!PREFIX!!/pgsql/lib ] && /sbin/ldconfig -m !!PREFIX!!/pgsql/lib
[ -x !!PREFIX!!/pgsql/bin/postmaster ] && {
- su -l pgsql -c 'exec !!PREFIX!!/pgsql/bin/postmaster \
- -S -o -F > !!PREFIX!!/pgsql/errlog'
+ su -l pgsql -c 'exec !!PREFIX!!/pgsql/bin/postmaster -i -S -o -F \
+ -D!!PREFIX!!/pgsql/data > !!PREFIX!!/pgsql/errlog'
echo -n ' pgsql'
}