]> err.no Git - scalable-opengroupware.org/commitdiff
git-svn-id: http://svn.opengroupware.org/SOGo/inverse/trunk@1111 d1b88da0-ebda-0310...
authorwolfgang <wolfgang@d1b88da0-ebda-0310-925b-ed51d893ca5b>
Thu, 19 Jul 2007 15:51:39 +0000 (15:51 +0000)
committerwolfgang <wolfgang@d1b88da0-ebda-0310-925b-ed51d893ca5b>
Thu, 19 Jul 2007 15:51:39 +0000 (15:51 +0000)
Scripts/sogo-init.d-debian [new file with mode: 0755]
Scripts/sogod-0.9

diff --git a/Scripts/sogo-init.d-debian b/Scripts/sogo-init.d-debian
new file mode 100755 (executable)
index 0000000..2044a40
--- /dev/null
@@ -0,0 +1,53 @@
+#! /bin/sh
+
+PATH=/sbin:/bin:/usr/sbin:/usr/bin
+
+DAEMON=/usr/sbin/sogod-0.9
+NAME=sogo
+DESC="Scalable OpenGroupware.Org"
+
+PIDFILE=/var/run/sogo/sogod.pid
+
+SOGO_ARGS=""
+
+if [ -f /etc/default/sogo ]; then
+    . /etc/default/sogo
+fi
+
+test -x $DAEMON || exit 0
+
+#set -e
+
+case "$1" in
+  start)
+       echo -n "Starting $DESC: "
+       start-stop-daemon -c sogo --pidfile $PIDFILE \
+               -b --start --quiet --exec $DAEMON
+       echo "$NAME."
+       ;;
+  stop)
+       echo -n "Stopping $DESC: "
+       sogopid=$(cat $PIDFILE)
+       kill ${sogopid} 2> /dev/null
+       rm -f $PIDFILE
+       echo "$NAME."
+       ;;
+  restart|force-reload)
+       echo -n "Restarting $DESC: "
+       sogopid=$(cat $PIDFILE)
+       kill ${sogopid} 2> /dev/null
+       rm -f $PIDFILE
+       sleep 1
+       start-stop-daemon -c sogo --pidfile $PIDFILE \
+               -b --start --quiet --exec $DAEMON
+       echo "$NAME."
+       ;;
+  *)
+       N=/etc/init.d/$NAME
+       echo "Usage: $N {start|stop|restart|force-reload}" >&2
+       exit 1
+       ;;
+esac
+
+exit 0
+
index c19d35a7e45f73c7d067d34a320267e11955ad08..99584cece982288647537ee99c86a5da70967b52 100755 (executable)
@@ -2,7 +2,7 @@
 
 PIDFILE=/var/run/sogo/sogod.pid
 
-. /usr/local/lib/GNUstep-SOPE/Library/Makefiles/GNUstep.sh
+. /usr/lib/GNUstep/System/Library/Makefiles/GNUstep.sh
 
 echo $$ > $PIDFILE
 exec $GNUSTEP_LOCAL_ROOT/Tools/sogod-0.9 >& /var/log/sogo/sogod.log