From: Adriano d. S. F. <asf...@us...> - 2009-10-20 21:26:06
|
Build Version : T3.0.0.25803 Firebird 3.0 Unstable (writeBuildNum.sh,v 1.25972 2009/10/20 21:24:56 asfernandes ) Update of /cvsroot/firebird/firebird2/builds/install/arch-specific/linux/misc In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv27220/builds/install/arch-specific/linux/misc Modified Files: Tag: B2_5_ExtEngines firebird.init.d.debian.in firebird.init.d.generic.in firebird.init.d.gentoo.in firebird.init.d.mandrake.in firebird.init.d.slackware.in firebird.init.d.suse.in Log Message: Sync. with HEAD Index: firebird.init.d.debian.in =================================================================== RCS file: /cvsroot/firebird/firebird2/builds/install/arch-specific/linux/misc/firebird.init.d.debian.in,v retrieving revision 1.6.10.4 retrieving revision 1.6.10.5 diff -b -U3 -r1.6.10.4 -r1.6.10.5 --- firebird.init.d.debian.in 17 Sep 2009 14:41:18 -0000 1.6.10.4 +++ firebird.init.d.debian.in 20 Oct 2009 21:24:54 -0000 1.6.10.5 @@ -14,10 +14,26 @@ # Source function library. #. /etc/rc.d/init.d/functions - FIREBIRD=@FB_CONFDIR@ FBRunUser=firebird -pidfile=/var/run/firebird/`basename $0`.pid + +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/`basename $0`.pid" FB_OPTS="-pidfile $pidfile -daemon -forever" export FIREBIRD Index: firebird.init.d.generic.in =================================================================== RCS file: /cvsroot/firebird/firebird2/builds/install/arch-specific/linux/misc/firebird.init.d.generic.in,v retrieving revision 1.7.4.2 retrieving revision 1.7.4.3 diff -b -U3 -r1.7.4.2 -r1.7.4.3 --- firebird.init.d.generic.in 17 Sep 2009 14:41:18 -0000 1.7.4.2 +++ firebird.init.d.generic.in 20 Oct 2009 21:24:54 -0000 1.7.4.3 @@ -12,7 +12,24 @@ # No changes needed below for multiple instances FBRunUser=firebird -pidfile=/var/run/firebird/$INSTANCE.pid + +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" FULLNAME="Firebird server [$INSTANCE]" LD_LIBRARY_PATH=$FIREBIRD/lib Index: firebird.init.d.gentoo.in =================================================================== RCS file: /cvsroot/firebird/firebird2/builds/install/arch-specific/linux/misc/firebird.init.d.gentoo.in,v retrieving revision 1.7.4.2 retrieving revision 1.7.4.3 diff -b -U3 -r1.7.4.2 -r1.7.4.3 --- firebird.init.d.gentoo.in 17 Sep 2009 14:41:18 -0000 1.7.4.2 +++ firebird.init.d.gentoo.in 20 Oct 2009 21:24:54 -0000 1.7.4.3 @@ -19,7 +19,25 @@ FIREBIRD=@FB_CONFDIR@ FBRunUser=firebird -pidfile=/var/run/firebird/$INSTANCE.pid + +makeFbDir() { + mDir=${1} + mode=${2} + 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" FULLNAME="firebird server [$INSTANCE]" LD_LIBRARY_PATH=$FIREBIRD/lib FB_OPTS="-pidfile $pidfile -daemon -forever" Index: firebird.init.d.mandrake.in =================================================================== RCS file: /cvsroot/firebird/firebird2/builds/install/arch-specific/linux/misc/firebird.init.d.mandrake.in,v retrieving revision 1.7.4.5 retrieving revision 1.7.4.6 diff -b -U3 -r1.7.4.5 -r1.7.4.6 --- firebird.init.d.mandrake.in 17 Sep 2009 14:41:19 -0000 1.7.4.5 +++ firebird.init.d.mandrake.in 20 Oct 2009 21:24:54 -0000 1.7.4.6 @@ -32,7 +32,24 @@ # No changes needed below for multiple instances name=$(basename `readlink -f $0`) FBRunUser=firebird -pidfile=/var/run/firebird/$INSTANCE.pid + +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" FULLNAME="Firebird server [$INSTANCE]" LD_LIBRARY_PATH=$FIREBIRD/lib Index: firebird.init.d.slackware.in =================================================================== RCS file: /cvsroot/firebird/firebird2/builds/install/arch-specific/linux/misc/firebird.init.d.slackware.in,v retrieving revision 1.4.4.2 retrieving revision 1.4.4.3 diff -b -U3 -r1.4.4.2 -r1.4.4.3 --- firebird.init.d.slackware.in 17 Sep 2009 14:41:19 -0000 1.4.4.2 +++ firebird.init.d.slackware.in 20 Oct 2009 21:24:54 -0000 1.4.4.3 @@ -16,7 +16,24 @@ # No changes needed below for multiple instances FBRunUser=firebird -pidfile=/var/run/firebird/$INSTANCE.pid + +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" FULLNAME="Firebird server [$INSTANCE]" LD_LIBRARY_PATH=$FIREBIRD/lib Index: firebird.init.d.suse.in =================================================================== RCS file: /cvsroot/firebird/firebird2/builds/install/arch-specific/linux/misc/firebird.init.d.suse.in,v retrieving revision 1.8.4.3 retrieving revision 1.8.4.4 diff -b -U3 -r1.8.4.3 -r1.8.4.4 --- firebird.init.d.suse.in 17 Sep 2009 14:41:19 -0000 1.8.4.3 +++ firebird.init.d.suse.in 20 Oct 2009 21:24:54 -0000 1.8.4.4 @@ -42,7 +42,24 @@ FIREBIRD=@FB_CONFDIR@ FBRunUser=firebird -pidfile=/var/run/firebird/firebird.pid + +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" export FIREBIRD |