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

75 lines
1.5 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@
ISC_USER=SYSDBA
ISC_PASSWORD=masterkey
# WARNING: you should not expose the SYSDBA password in a publicly-
# readable file. So please ensure this file is not world readable.
# Eventually this file should not need to contain any passwords.
# as root user alone should be sufficient privledge to stop/start
# the server.
FBRunUser=firebird
export FIREBIRD
export ISC_USER
export ISC_PASSWORD
# Check the file is there and is executable.
[ -x $FIREBIRD/bin/fbmgr ] || exit 0
# 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: "
$FIREBIRD/bin/fbmgr -shut -user $ISC_USER -password $ISC_PASSWORD
unset ISC_USER
unset ISC_PASSWORD
# killproc fbserver
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