]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/scripts/init.d/helm
This commit was manufactured by cvs2svn to create branch 'init'.
[helm.git] / helm / scripts / init.d / helm
diff --git a/helm/scripts/init.d/helm b/helm/scripts/init.d/helm
deleted file mode 100755 (executable)
index c58a15d..0000000
+++ /dev/null
@@ -1,37 +0,0 @@
-#!/bin/sh
-#
-# init.d script for HELM daemons
-#
-# by --Zack <zack@cs.unibo.it>
-# Created: Tue,  8 Oct 2002 17:18:17 +0200
-# Last-Modified: Tue,  8 Oct 2002 17:18:17 +0200
-
-DAEMONS=""
-if [ -f /etc/default/helm ]; then
-  . /etc/default/helm
-fi
-
-case "$1" in
-
-  start|stop|restart|force-reload|reload)
-    for d in $DAEMONS; do
-      /etc/init.d/$d $1
-    done
-    ;;
-
-  *)
-    echo
-    echo "Usage: /etc/init.d/helm { start | stop | restart | force-reload | reload }" >&2
-    echo
-    if [ -z "$DAEMONS" ]; then
-      echo "Actually, no daemons are considered!"
-    else
-      echo "Actually, considered daemons are: $DAEMONS"
-    fi
-    echo "to change this setting see /etc/default/helm"
-    echo
-    exit 1
-    ;;
-
-esac
-