38f3ac6915
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
10 lines
312 B
Plaintext
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
|