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

62 lines
1.0 KiB
Plaintext
Raw Normal View History

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
# This init script contains functions specific for redhat
# and mandrake init scripts.
# Source function library.
. /etc/rc.d/init.d/functions
FIREBIRD=@prefix@
FBRunUser=firebird
export FIREBIRD
# Check the file is there and is executable.
2005-04-29 20:24:44 +02:00
[ -x $FIREBIRD/bin/fbmgr ] || exit 1
2003-11-07 15:18:41 +01:00
# See how we were called.
case "$1" in
start)
echo -n "Starting Firebird server: "
daemon --user $FBRunUser $FIREBIRD/bin/fbmgr -start -forever
RETVAL=$?
2005-03-13 17:04:59 +01:00
echo
2003-11-07 15:18:41 +01:00
;;
stop)
echo -n "Stopping Firebird server: "
2005-05-05 10:39:12 +02:00
killall fbserver
2003-11-07 15:18:41 +01:00
RETVAL=$?
# echo
# [ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/identd
;;
status)
status fbserver
RETVAL=$?
;;
restart|reload)
$0 stop
$0 start
RETVAL=$?
;;
*)
echo "Usage: firebird {start|stop|status|restart|reload}"
exit 1
esac
exit $RETVAL