2006-04-24 12:08:16 +02:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# /etc/rc.d/rc.firebirdss
|
|
|
|
#
|
|
|
|
# Start/stop/restart the firebird super server.
|
|
|
|
#
|
|
|
|
|
2007-12-03 17:11:46 +01:00
|
|
|
# To run more instances of firebird:
|
|
|
|
# Copy @prefix@ somewhere
|
|
|
|
# Copy this script under a new name
|
|
|
|
# Change INSTANCE and FIREBIRD below (all instance names should be unique)
|
|
|
|
# Edit the copied firebird.conf to change at least RemoteServicePort
|
|
|
|
# Optionally run rc-update to autostart the new service
|
|
|
|
INSTANCE=default
|
2009-09-11 12:49:46 +02:00
|
|
|
FIREBIRD=@FB_CONFDIR@
|
2007-12-03 17:11:46 +01:00
|
|
|
|
|
|
|
# No changes needed below for multiple instances
|
2006-04-24 12:08:16 +02:00
|
|
|
FBRunUser=firebird
|
2009-09-21 15:39:23 +02:00
|
|
|
|
|
|
|
makeFbDir() {
|
|
|
|
mDir=${1}
|
|
|
|
if [ ! -d $mDir ]; then
|
|
|
|
rm -rf $mDir
|
|
|
|
mkdir $mDir
|
|
|
|
if [ "$mode" ]; then
|
|
|
|
chmod $mode $mDir
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
chown $FBRunUser:$FBRunUser $mDir
|
|
|
|
}
|
|
|
|
runDir=/var/run/firebird
|
|
|
|
makeFbDir $runDir
|
|
|
|
lockDir=/tmp/firebird
|
|
|
|
makeFbDir $lockDir 0770
|
|
|
|
|
|
|
|
pidfile="$runDir/$INSTANCE.pid"
|
2007-12-03 17:11:46 +01:00
|
|
|
FULLNAME="Firebird server [$INSTANCE]"
|
|
|
|
LD_LIBRARY_PATH=$FIREBIRD/lib
|
|
|
|
|
|
|
|
export FIREBIRD LD_LIBRARY_PATH
|
|
|
|
|
2008-04-25 18:37:30 +02:00
|
|
|
GUARDIAN=$FIREBIRD/bin/fbguard
|
2009-09-11 12:49:46 +02:00
|
|
|
if [ ! -x $GUARDIAN ]; then
|
|
|
|
GUARDIAN=@FB_SBINDIR@/fbguard
|
|
|
|
fi
|
2007-12-03 17:11:46 +01:00
|
|
|
|
2006-04-24 12:08:16 +02:00
|
|
|
case "$1" in
|
2007-12-03 17:11:46 +01:00
|
|
|
'start') echo -n "Starting $FULLNAME: "
|
2008-04-25 18:37:30 +02:00
|
|
|
echo $GUARDIAN -pidfile $pidfile -daemon -forever | su $FBRunUser ;;
|
2007-12-03 17:11:46 +01:00
|
|
|
'stop') echo -n "Stopping $FULLNAME: "
|
|
|
|
if [ -f $pidfile ]; then kill `cat $pidfile`; echo "done."; else echo "error: no PID file."; fi ;;
|
2007-03-09 14:32:17 +01:00
|
|
|
'restart') $0 stop ; sleep 1; $0 start ;;
|
2006-04-24 12:08:16 +02:00
|
|
|
*) echo "usage $0 start|stop|restart" ;;
|
|
|
|
esac
|