This commit is contained in:
jasper 2010-11-23 18:14:19 +00:00
parent 286f038a14
commit 0273b99582
4 changed files with 25 additions and 25 deletions

View File

@ -1,9 +1,9 @@
# $OpenBSD: Makefile,v 1.25 2010/11/10 07:33:02 ajacoutot Exp $
# $OpenBSD: Makefile,v 1.26 2010/11/23 18:14:19 jasper Exp $
COMMENT= GNU Problem Report Management System
DISTNAME= gnats-3.113.1
REVISION= 7
REVISION= 8
CATEGORIES= databases devel
MASTER_SITES= ${MASTER_SITE_GNU:=gnats/}

View File

@ -1,8 +1,10 @@
$OpenBSD: README,v 1.2 2010/11/10 07:33:02 ajacoutot Exp $
$OpenBSD: README,v 1.3 2010/11/23 18:14:19 jasper Exp $
Post-installation
-----------------
Running GNATS on OpenBSD
========================
Post-installation steps:
------------------------
1. Add the following to /etc/services:
support 1529/tcp # GNATS
@ -12,8 +14,7 @@ support 1529/tcp # GNATS
support stream tcp nowait _gnats ${TRUEPREFIX}/libexec/gnats/gnatsd gnatsd
3. Edit the config files in ${TRUEPREFIX}/share/gnats/gnats-db/gnats-adm
(see the GNATS info documentation, HTML'ized at
http://sunsite.ualberta.ca/Documentation/Gnu/gnats-3.113/)
(see the GNATS info documentation and online HTML documentation)
to your liking, then run (as root):
su -m _gnats -c '${TRUEPREFIX}/libexec/gnats/mkcat --directory=${TRUEPREFIX}/share/gnats/gnats-db'
@ -45,7 +46,6 @@ increase privileges for all users of gnatsweb by changing 'view' to
'edit', or for individual users by adding rules to
${TRUEPREFIX}/share/gnats/gnats-db/gnats-adm/gnatsd.access.
Post-deinstallation
-------------------
Reverse all of the above! :-)
References:
-----------
Additional documentation at http://sunsite.ualberta.ca/Documentation/Gnu/gnats-3.113/

View File

@ -1,9 +1,9 @@
# $OpenBSD: Makefile,v 1.6 2010/11/15 00:22:53 espie Exp $
# $OpenBSD: Makefile,v 1.7 2010/11/23 18:14:19 jasper Exp $
COMMENT = lightweight connection pooler for PostgreSQL
DISTNAME = pgbouncer-1.3.3
REVISION = 2
REVISION = 3
CATEGORIES = databases

View File

@ -1,17 +1,20 @@
$OpenBSD: README,v 1.1 2010/11/08 08:53:05 jasper Exp $
$OpenBSD: README,v 1.2 2010/11/23 18:14:19 jasper Exp $
1) Carefully edit ${SYSCONFDIR}/pgbouncer/pgbouncer.ini and
Running pgbouncer on OpenBSD
============================
Post-installation steps:
------------------------
1. Carefully edit ${SYSCONFDIR}/pgbouncer/pgbouncer.ini and
${SYSCONFDIR}/pgbouncer/userlist.txt to fit your needs.
2) Launch pgbouncer in foreground mode to see if everything
2. Launch pgbouncer in foreground mode to see if everything
is ok:
# install -d -o _pgbouncer /var/run/pgbouncer
# pgbouncer -u _pgbouncer ${SYSCONFDIR}/pgbouncer/pgbouncer.ini
3) Add the following to your /etc/rc.local:
3. Add the following to your /etc/rc.local:
if [ -x ${TRUEPREFIX}/bin/pgbouncer ]; then
echo -n 'pgbouncer'
@ -20,9 +23,6 @@ $OpenBSD: README,v 1.1 2010/11/08 08:53:05 jasper Exp $
${SYSCONFDIR}/pgbouncer/pgbouncer.ini
fi
Random hints:
* Check /var/log/pgbouncer/pgbouncer.log if something
goes wrong
Random hints:
-------------
Check /var/log/pgbouncer/pgbouncer.log if something goes wrong.