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

diff --git a/Scripts/sogo-init.d-redhat b/Scripts/sogo-init.d-redhat
new file mode 100755 (executable)
index 0000000..3c04063
--- /dev/null
@@ -0,0 +1,51 @@
+#!/bin/sh
+
+PATH=/sbin:/bin:/usr/sbin:/usr/bin
+
+DAEMON=/usr/sbin/sogod
+NAME=sogo
+DESC="Scalable OpenGroupware.Org"
+
+PIDFILE=/var/run/sogo/sogod.pid
+
+SOGO_ARGS=""
+
+if [ -f /etc/sysconfig/sogo ]; then
+    . /etc/sysconfig/sogo
+fi
+
+. /etc/init.d/functions
+
+test -x $DAEMON || exit 0
+
+#set -e
+
+case "$1" in
+  start)
+       echo -n "Starting $DESC: "
+       daemon $DAEMON
+       echo "$NAME."
+       ;;
+  stop)
+       echo -n "Stopping $DESC: "
+       killall sogod-0.9 2> /dev/null
+       rm -f $PIDFILE
+       echo "$NAME."
+       ;;
+  restart|force-reload)
+       echo -n "Restarting $DESC: "
+       killall sogod-0.9 2> /dev/null
+       rm -f $PIDFILE
+       sleep 1
+       daemon $DAEMON
+       echo "$NAME."
+       ;;
+  *)
+       N=/etc/init.d/$NAME
+       echo "Usage: $N {start|stop|restart|force-reload}" >&2
+       exit 1
+       ;;
+esac
+
+exit 0
+
diff --git a/Scripts/sogod-redhat b/Scripts/sogod-redhat
new file mode 100755 (executable)
index 0000000..99584ce
--- /dev/null
@@ -0,0 +1,9 @@
+#!/bin/sh
+
+PIDFILE=/var/run/sogo/sogod.pid
+
+. /usr/lib/GNUstep/System/Library/Makefiles/GNUstep.sh
+
+echo $$ > $PIDFILE
+exec $GNUSTEP_LOCAL_ROOT/Tools/sogod-0.9 >& /var/log/sogo/sogod.log
+