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

53 lines
893 B
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
FIREBIRD=@prefix@
FBRunUser=firebird
2006-04-16 14:58:29 +02:00
pidfile=/var/run/firebird/`basename $0`.pid
2003-11-07 15:18:41 +01:00
export FIREBIRD
# 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: "
2006-04-16 14:58:29 +02:00
echo '$FIREBIRD/bin/fbmgr -pidfile $pidfile -start -forever' | su $FBRunUser
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=$?
;;
status)
RETVAL=0
;;
restart|reload)
$0 stop
$0 start
RETVAL=$?
;;
*)
echo "Usage: firebird {start|stop|status|restart|reload}"
exit 1
esac
exit $RETVAL