2003-11-07 15:18:41 +01:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# chkconfig: 345 20 80
|
|
|
|
# description: Start/Stop firebird database server
|
|
|
|
#
|
|
|
|
# This file belongs in /etc/init.d where it will be run
|
|
|
|
# on system startup and shutdown to start the background
|
|
|
|
# Firebird/interbase database server daemon
|
|
|
|
|
|
|
|
|
2005-12-30 16:13:29 +01:00
|
|
|
# This init script contains functions specific for debian
|
|
|
|
# init scripts.
|
2003-11-07 15:18:41 +01:00
|
|
|
|
|
|
|
# Source function library.
|
|
|
|
#. /etc/rc.d/init.d/functions
|
|
|
|
|
|
|
|
|
|
|
|
FIREBIRD=@prefix@
|
|
|
|
FBRunUser=firebird
|
2006-04-16 14:58:29 +02:00
|
|
|
pidfile=/var/run/firebird/`basename $0`.pid
|
2008-04-25 18:37:30 +02:00
|
|
|
FB_OPTS="-pidfile $pidfile -daemon -forever"
|
2003-11-07 15:18:41 +01:00
|
|
|
export FIREBIRD
|
|
|
|
|
2008-04-25 18:37:30 +02:00
|
|
|
GUARDIAN=$FIREBIRD/bin/fbguard
|
2003-11-07 15:18:41 +01:00
|
|
|
|
|
|
|
# See how we were called.
|
|
|
|
case "$1" in
|
|
|
|
start)
|
|
|
|
echo -n "Starting Firebird server: "
|
2008-04-25 18:37:30 +02:00
|
|
|
start-stop-daemon --start --quiet --oknodo --chuid $FBRunUser --exec $GUARDIAN -- $FB_OPTS
|
2003-11-07 15:18:41 +01:00
|
|
|
RETVAL=$?
|
|
|
|
;;
|
|
|
|
stop)
|
|
|
|
echo -n "Stopping Firebird server: "
|
2006-04-16 14:58:29 +02:00
|
|
|
if [ -f $pidfile ]
|
|
|
|
then
|
|
|
|
kill `cat $pidfile`
|
|
|
|
fi
|
2003-11-07 15:18:41 +01:00
|
|
|
RETVAL=$?
|
|
|
|
;;
|
|
|
|
restart|reload)
|
|
|
|
$0 stop
|
|
|
|
$0 start
|
|
|
|
RETVAL=$?
|
|
|
|
;;
|
|
|
|
shutdown)
|
|
|
|
echo -n "Forcibly killing Firebird server..."
|
|
|
|
killall fbguard
|
|
|
|
killall fbserver
|
|
|
|
echo "done."
|
|
|
|
RETVAL=0
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
echo "Usage: firebird {start|stop|shutdown|restart|reload}"
|
|
|
|
exit 1
|
|
|
|
esac
|
|
|
|
|
|
|
|
exit $RETVAL
|
|
|
|
|