8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 22:03:03 +01:00
firebird-mirror/builds/install/arch-specific/linux/misc/firebird.init.d.debian.in

79 lines
1.4 KiB
Plaintext
Raw Normal View History

2003-11-07 15:18:41 +01:00
#!/bin/sh
2009-07-30 13:30:37 +02:00
# chkconfig: 345 80 20
2003-11-07 15:18:41 +01:00
# 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 database server daemon
2003-11-07 15:18:41 +01:00
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=@FB_CONFDIR@
2003-11-07 15:18:41 +01:00
FBRunUser=firebird
makeFbDir() {
mDir=${1}
if [ ! -d $mDir ]; then
rm -rf $mDir
mkdir $mDir
if [ "$mode" ]; then
chmod $mode $mDir
fi
fi
chown $FBRunUser:$FBRunUser $mDir
}
runDir=/var/run/firebird
makeFbDir $runDir
lockDir=/tmp/firebird
makeFbDir $lockDir 0770
pidfile="$runDir/`basename $0`.pid"
FB_OPTS="-pidfile $pidfile -daemon -forever"
2003-11-07 15:18:41 +01:00
export FIREBIRD
GUARDIAN=$FIREBIRD/bin/fbguard
if [ ! -x $GUARDIAN ]; then
GUARDIAN=@FB_SBINDIR@/fbguard
fi
2003-11-07 15:18:41 +01:00
# See how we were called.
case "$1" in
start)
echo -n "Starting Firebird server: "
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
killall fb_smp_server
2003-11-07 15:18:41 +01:00
echo "done."
RETVAL=0
;;
*)
echo "Usage: firebird {start|stop|shutdown|restart|reload}"
exit 1
esac
exit $RETVAL