X-Git-Url: http://matita.cs.unibo.it/gitweb/?p=helm.git;a=blobdiff_plain;f=helm%2Fscripts%2Finit.d%2Fhelm_mowgli;fp=helm%2Fscripts%2Finit.d%2Fhelm_mowgli;h=0000000000000000000000000000000000000000;hp=fe73ec0d7abef12a3df349710b483955a9788410;hb=3ef089a4c58fbe429dd539af6215991ecbe11ee2;hpb=1c7fb836e2af4f2f3d18afd0396701f2094265ff diff --git a/helm/scripts/init.d/helm_mowgli b/helm/scripts/init.d/helm_mowgli deleted file mode 100755 index fe73ec0d7..000000000 --- a/helm/scripts/init.d/helm_mowgli +++ /dev/null @@ -1,37 +0,0 @@ -#!/bin/sh -# -# init.d script for HELM daemons -# -# by --Zack -# 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_mowgli ]; then - . /etc/default/helm_mowgli -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 -