sogo/Scripts/sogod-wrapper
Wolfgang Sourdeau 54b6c29882 Monotone-Parent: e73b212f80d9775c77a209ee973af8977da55214
Monotone-Revision: d20b6efa6a8c415c1db8ca849c311e740a312646

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2007-11-05T22:58:11
Monotone-Branch: ca.inverse.sogo
2007-11-05 22:58:11 +00:00

65 lines
1.6 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.
if [ -z "$1" ]
then
PIDFILE=/var/run/sogo/sogod.pid
else
PIDFILE=/var/run/sogo/sogod.$1
fi
if [ -d /usr/lib/GNUstep ]
then
. /usr/lib/GNUstep/System/Library/Makefiles/GNUstep.sh
else
. /usr/GNUstep/System/Library/Makefiles/GNUstep.sh
fi
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
if [ -z "$1" ]
then
port=$startport
else
let "port=$startport + $1 - 1"
fi
exec $sogod -WOPort $port >> /var/log/sogo/sogod-$port.log 2>&1 &