openbsd-ports/net/gnugk/pkg/MESSAGE
ajacoutot 38f3ac6915 - update to gnugk-2.2.8
Some of the changes:
* auto-reconnect feature for all database drivers
* support for using stored procedures when using MySQL
* the extended 'sql' routing policy now supports setting multiple
failover routes
- use SUBST_CMD
- remove GNUGK_ID variable... not useful
2009-01-17 11:42:03 +00:00

10 lines
312 B
Plaintext

To start gnugk on boot-up, add the following lines to /etc/rc.local:
if [ -x ${PREFIX}/bin/gnugk ]; then
install -d -o _gnugk /var/run/gnugk
echo -n ' gnugk'
${PREFIX}/bin/gnugk -t -c ${SYSCONFDIR}/gatekeeper.ini \
-u _gnugk -o /var/log/gnugk/gnugk.log \
--pid /var/run/gnugk/gnugk.pid 1> /dev/null &
fi