8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-24 02:43:03 +01:00
firebird-mirror/builds/install/arch-specific/linux/misc/firebird.init.d.debian.in
asfernandes b30236303d Misc
2008-05-05 02:22:53 +00:00

60 lines
1.1 KiB
Bash

#!/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
# This init script contains functions specific for debian
# init scripts.
# Source function library.
#. /etc/rc.d/init.d/functions
FIREBIRD=@prefix@
FBRunUser=firebird
pidfile=/var/run/firebird/`basename $0`.pid
FB_OPTS="-pidfile $pidfile -daemon -forever"
export FIREBIRD
GUARDIAN=$FIREBIRD/bin/fbguard
# 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
RETVAL=$?
;;
stop)
echo -n "Stopping Firebird server: "
if [ -f $pidfile ]
then
kill `cat $pidfile`
fi
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