diff options
author | agc <agc@pkgsrc.org> | 1998-02-17 15:29:55 +0000 |
---|---|---|
committer | agc <agc@pkgsrc.org> | 1998-02-17 15:29:55 +0000 |
commit | f9632bdc2b06c1fef28b88aa8ae4aec48c3c6333 (patch) | |
tree | d68df52a58370ca2b4d673f04221ee7643ff3a7d /databases/postgresql/files | |
parent | e904242751d58625381535bd7207e025c7674e85 (diff) | |
download | pkgsrc-f9632bdc2b06c1fef28b88aa8ae4aec48c3c6333.tar.gz |
Initial import of Postgresql 6.2.1, an Object Relational Database
Management System, into the NetBSD packages collection, from the
FreeBSD port.
Diffstat (limited to 'databases/postgresql/files')
-rw-r--r-- | databases/postgresql/files/md5 | 1 | ||||
-rw-r--r-- | databases/postgresql/files/pgsql.sh.tmpl | 25 | ||||
-rw-r--r-- | databases/postgresql/files/post-install-notes | 13 |
3 files changed, 39 insertions, 0 deletions
diff --git a/databases/postgresql/files/md5 b/databases/postgresql/files/md5 new file mode 100644 index 00000000000..5d42f88c853 --- /dev/null +++ b/databases/postgresql/files/md5 @@ -0,0 +1 @@ +MD5 (postgresql-6.2.1.tar.gz) = bd606dcab6b09a3a3d276d88b504a1d3 diff --git a/databases/postgresql/files/pgsql.sh.tmpl b/databases/postgresql/files/pgsql.sh.tmpl new file mode 100644 index 00000000000..1d3333789f9 --- /dev/null +++ b/databases/postgresql/files/pgsql.sh.tmpl @@ -0,0 +1,25 @@ +#!/bin/sh + +# FreeBSD 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 \ + -S -o -F > !!PREFIX!!/pgsql/errlog' + echo -n ' pgsql' +} diff --git a/databases/postgresql/files/post-install-notes b/databases/postgresql/files/post-install-notes new file mode 100644 index 00000000000..a57562fe871 --- /dev/null +++ b/databases/postgresql/files/post-install-notes @@ -0,0 +1,13 @@ + +Now that PostgreSQL is installed, you should read the documentation and +implementation guides. These can be found at: + + http://www.PostgreSQL.org/docs + +You may wish to subscribe to the PostgreSQL user-support mailing list. +Send an e-mail to pgsql-questions-request@postgresql.org with the +text "subscribe" in the message body. + +If you build PostgreSQL with TCL support, then you can use the +TCL/TK based database frontend "pgaccess" for database operations. + |