sogo/Scripts/sogod-0.9-redhat
Francis Lachapelle 4b434d712f Monotone-Parent: 524b4bce2ab03027f260f0ff2d06704b97dba44c
Monotone-Revision: ccac1110e9fff9029a2485c4ba9345c4912b0c85

Monotone-Author: flachapelle@inverse.ca
Monotone-Date: 2007-10-31T17:15:24
Monotone-Branch: ca.inverse.sogo
2007-10-31 17:15:24 +00:00

49 lines
1.4 KiB
Bash
Executable file

#!/bin/sh
# SOGo daemon wrapper
#
# Copyright (C) 2007 Inverse groupe conseil
#
# Author: Wolfgang Sourdeau <wsourdeau@inverse.ca>
#
# This file is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2, or (at your option)
# any later version.
#
# This file is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; see the file COPYING. If not, write to
# the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA.
PIDFILE=/var/run/sogo/sogod.$1
. /usr/GNUstep/System/Library/Makefiles/GNUstep.sh
if [ -f $GNUSTEP_USER_ROOT/Tools/sogod-0.9 ]; then
sogod="$GNUSTEP_USER_ROOT/Tools/sogod-0.9"
elif [ -f $GNUSTEP_LOCAL_ROOT/Tools/sogod-0.9 ]; then
sogod="$GNUSTEP_LOCAL_ROOT/Tools/sogod-0.9"
else
echo "Can't find sogod-0.9"
exit 1
fi
echo $$ > $PIDFILE
startport=`defaults read sogod-0.9 WOPort`
if [ "$?" == "0" ]
then
startport=`echo $startport | awk '{print $3}'`
else
startport=20000
fi
let "port=$startport + $1 - 1"
exec $sogod -WOPort $port >& /var/log/sogo/sogod-$port.log &