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@
|
|
|
|
ISC_USER=SYSDBA
|
|
|
|
ISC_PASSWORD=masterke
|
|
|
|
FBRunUser=firebird
|
2005-03-13 17:04:59 +01:00
|
|
|
FB_OPTS="-start -forever"
|
2003-11-07 15:18:41 +01:00
|
|
|
# WARNING: in a real-world installation, you should not put the
|
|
|
|
# SYSDBA password in a publicly-readable file.
|
|
|
|
# Eventually this file should not need to contain any passwords.
|
|
|
|
# as root user alone should be sufficient privledge to stop/start
|
|
|
|
# the server.
|
|
|
|
|
|
|
|
|
|
|
|
export FIREBIRD
|
|
|
|
export ISC_USER
|
|
|
|
export ISC_PASSWORD
|
|
|
|
|
|
|
|
|
|
|
|
# Check the file is there and is executable.
|
|
|
|
MANAGER=$FIREBIRD/bin/fbmgr.bin
|
|
|
|
[ -x $MANAGER ] || exit 0
|
|
|
|
|
|
|
|
# See how we were called.
|
|
|
|
case "$1" in
|
|
|
|
start)
|
|
|
|
echo -n "Starting Firebird server: "
|
|
|
|
start-stop-daemon --start --quiet --oknodo --user $FBRunUser --exec $MANAGER -- $FB_OPTS
|
|
|
|
RETVAL=$?
|
|
|
|
;;
|
|
|
|
stop)
|
|
|
|
echo -n "Stopping Firebird server: "
|
|
|
|
# start-stop-daemon --stop --quiet --oknodo --pidfile /var/run/firebird.pid
|
|
|
|
$MANAGER -shut
|
|
|
|
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
|
|
|
|
|