diff options
author | andreas <andreas@FreeBSD.org> | 1998-04-22 05:52:10 +0800 |
---|---|---|
committer | andreas <andreas@FreeBSD.org> | 1998-04-22 05:52:10 +0800 |
commit | 47ee1c7b8cec84b7f97f4057d71a99c2e9b5d537 (patch) | |
tree | 099695f5fd08a75640b2c90cf5cb0b582ed79155 /databases/postgresql81-server/files/pgsql.sh.tmpl | |
parent | 6feda840eea48e695fcf42844e5c8dfb22dbc2ff (diff) | |
download | freebsd-ports-graphics-47ee1c7b8cec84b7f97f4057d71a99c2e9b5d537.tar.gz freebsd-ports-graphics-47ee1c7b8cec84b7f97f4057d71a99c2e9b5d537.tar.zst freebsd-ports-graphics-47ee1c7b8cec84b7f97f4057d71a99c2e9b5d537.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>
Diffstat (limited to 'databases/postgresql81-server/files/pgsql.sh.tmpl')
-rw-r--r-- | databases/postgresql81-server/files/pgsql.sh.tmpl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/databases/postgresql81-server/files/pgsql.sh.tmpl b/databases/postgresql81-server/files/pgsql.sh.tmpl index 9fd81e4ff36..ed6c54d1883 100644 --- a/databases/postgresql81-server/files/pgsql.sh.tmpl +++ b/databases/postgresql81-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' } |