]> err.no Git - scalable-opengroupware.org/blob - Scripts/sogod-wrapper
git-svn-id: http://svn.opengroupware.org/SOGo/inverse/trunk@1238 d1b88da0-ebda-0310...
[scalable-opengroupware.org] / Scripts / sogod-wrapper
1 #!/bin/sh
2
3 # SOGo daemon wrapper
4 #
5 # Copyright (C) 2007 Inverse groupe conseil
6 #
7 # Author: Wolfgang Sourdeau <wsourdeau@inverse.ca>
8 #
9 # This file is free software; you can redistribute it and/or modify
10 # it under the terms of the GNU General Public License as published by
11 # the Free Software Foundation; either version 2, or (at your option)
12 # any later version.
13 #
14 # This file is distributed in the hope that it will be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 # GNU General Public License for more details.
18 #
19 # You should have received a copy of the GNU General Public License
20 # along with this program; see the file COPYING.  If not, write to
21 # the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
22 # Boston, MA 02111-1307, USA.
23
24 PIDFILE=/var/run/sogo/sogod.$1
25
26 if [ -d /usr/lib/GNUstep ]
27 then
28   . /usr/lib/GNUstep/System/Library/Makefiles/GNUstep.sh
29 else
30   . /usr/GNUstep/System/Library/Makefiles/GNUstep.sh
31 fi
32
33 if [ -f $GNUSTEP_USER_ROOT/Tools/sogod-0.9 ]; then
34     sogod="$GNUSTEP_USER_ROOT/Tools/sogod-0.9"
35 elif [ -f $GNUSTEP_LOCAL_ROOT/Tools/sogod-0.9 ]; then
36     sogod="$GNUSTEP_LOCAL_ROOT/Tools/sogod-0.9"
37 else
38     echo "Can't find sogod-0.9"
39     exit 1
40 fi
41
42 echo $$ > $PIDFILE
43
44 startport=`defaults read sogod-0.9 WOPort`
45 if [ "$?" == "0" ]
46 then
47   startport=`echo $startport | awk '{print $3}'`
48 else
49   startport=20000
50 fi
51
52 if [ -z "$1" ]
53 then
54   port=$startport
55 else
56   let "port=$startport + $1 - 1"
57 fi
58
59 exec $sogod -WOPort $port >> /var/log/sogo/sogod-$port.log 2>&1 &