]> err.no Git - scalable-opengroupware.org/blob - Scripts/sogod-0.9-redhat
git-svn-id: http://svn.opengroupware.org/SOGo/inverse/trunk@1202 d1b88da0-ebda-0310...
[scalable-opengroupware.org] / Scripts / sogod-0.9-redhat
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 . /usr/GNUstep/System/Library/Makefiles/GNUstep.sh
27
28 echo $$ > $PIDFILE
29
30 startport=`defaults read sogod-0.9 WOPort`
31 if [ "$?" == "0" ]
32 then
33   startport=`echo $startport | awk '{print $3}'`
34 else
35   startport=20000
36 fi
37
38 let "port=$startport + $1 - 1"
39 exec $GNUSTEP_LOCAL_ROOT/Tools/sogod-0.9 -WOPort $PORT >& /var/log/sogo/sogod-$PORT.log