]> wagnertech.de Git - mfinanz.git/blobdiff - scripts/boot/system-v/lx-office-task-server
Boot-Scripte von "Lx-Office" auf "Kivitendo" umbenannt
[mfinanz.git] / scripts / boot / system-v / lx-office-task-server
diff --git a/scripts/boot/system-v/lx-office-task-server b/scripts/boot/system-v/lx-office-task-server
deleted file mode 100755 (executable)
index 1beb1d8..0000000
+++ /dev/null
@@ -1,49 +0,0 @@
-#!/bin/sh
-
-### BEGIN INIT INFO
-# Provides:          lx-office-task-server
-# Required-Start:    $local_fs $remote_fs $network $syslog $named
-# Required-Stop:     $local_fs $remote_fs $network $syslog $named
-# Default-Start:     2 3 4 5
-# Default-Stop:      0 1 6
-# X-Interactive:     true
-# Short-Description: Start/stop the Lx-Office task server
-### END INIT INFO
-
-set -e
-
-# Change this to point to the Lx-Office "task_server.pl" location.
-DAEMON="/opt/lx-office/scripts/task_server.pl"
-TOPIC="Lx-Office task server"
-
-if [ ! -x $DAEMON ] ; then
-  echo "$TOPIC executable not found"
-  exit 1
-fi
-
-case $1 in
-  start)
-    echo "Starting the $TOPIC"
-    $DAEMON start
-    ;;
-  stop)
-    echo "Stopping the $TOPIC"
-    $DAEMON stop
-    ;;
-  restart)
-    echo "Restarting the $TOPIC"
-    $DAEMON restart
-    ;;
-  status)
-    if $DAEMON status > /dev/null 2> /dev/null; then
-      echo "The $TOPIC is running"
-    else
-      echo "The $TOPIC is not running"
-      exit 1
-    fi
-    ;;
-  *)
-    echo "Usage: /etc/init.d/lx-office-task-server {start|stop|reload|status}"
-    exit 1
-    ;;
-esac