X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fscripts%2Finit.d%2Fhelm-uwobo-stylesheets;fp=helm%2Fscripts%2Finit.d%2Fhelm-uwobo-stylesheets;h=0000000000000000000000000000000000000000;hb=1696761e4b8576e8ed81caa905fd108717019226;hp=9c02014461bcbcecc4e122cdec7bcadd879fdd74;hpb=5325734bc2e4927ed7ec146e35a6f0f2b49f50c1;p=helm.git diff --git a/helm/scripts/init.d/helm-uwobo-stylesheets b/helm/scripts/init.d/helm-uwobo-stylesheets deleted file mode 100755 index 9c0201446..000000000 --- a/helm/scripts/init.d/helm-uwobo-stylesheets +++ /dev/null @@ -1,51 +0,0 @@ -#!/bin/sh -# -# init.d script for HELM daemons -# -# by --Zack -# Created: Wed, 9 Oct 2002 14:26:27 +0200 -# Last-Modified: Wed, 9 Oct 2002 14:26:27 +0200 - -UWOBO_INIT_SCRIPT="" -if [ -f /etc/default/helm ]; then - . /etc/default/helm -fi -test -x "$UWOBO_INIT_SCRIPT" || exit 0 - -case "$1" in - - start) - echo -n "Loading UWOBO stylesheets (mowgli) ... " - $UWOBO_INIT_SCRIPT $UWOBO_PANEL_CONF > /dev/null - echo "done!" - echo -n "Loading UWOBO stylesheets (mowgli NuPRL) ... " - $UWOBO_INIT_SCRIPT $NUPRL_UWOBO_PANEL_CONF > /dev/null - echo "done!" - ;; - - stop) - $UWOBO_INIT_SCRIPT --unload $UWOBO_PANEL_CONF > /dev/null - $UWOBO_INIT_SCRIPT --unload $NUPRL_UWOBO_PANEL_CONF > /dev/null - ;; - - reload) - $UWOBO_INIT_SCRIPT --reload $UWOBO_PANEL_CONF > /dev/null - $UWOBO_INIT_SCRIPT --reload $NUPRL_UWOBO_PANEL_CONF > /dev/null - ;; - - restart) - $UWOBO_INIT_SCRIPT --unload $UWOBO_PANEL_CONF > /dev/null - $UWOBO_INIT_SCRIPT --unload $NUPRL_UWOBO_PANEL_CONF > /dev/null - $UWOBO_INIT_SCRIPT $UWOBO_PANEL_CONF > /dev/null - $UWOBO_INIT_SCRIPT $NUPRL_UWOBO_PANEL_CONF > /dev/null - ;; - - *) - echo - echo "Usage: /etc/init.d/helm-uwobo-stylesheets { start | stop | restart | reload }" >&2 - echo - exit 1 - ;; - -esac -