home *** CD-ROM | disk | FTP | other *** search
/ PC World 2001 April / PCWorld_2001-04_cd.bin / Software / TemaCD / webclean / debian / init < prev    next >
Text File  |  2000-12-18  |  624b  |  42 lines

  1. #!/bin/sh -e
  2.  
  3. PATH="/sbin:/bin:/usr/sbin:/usr/bin"
  4. DAEMON="/usr/sbin/webcleaner"
  5. NAME="webcleaner"
  6. DESC="WebCleaner"
  7.  
  8. test -x $DAEMON || exit 0
  9.  
  10. case "$1" in
  11.   start)
  12.     echo -n "Starting $DESC: "
  13.     $DAEMON start
  14.     echo "$NAME."
  15.     ;;
  16.   stop)
  17.     echo -n "Stopping $DESC: "
  18.     $DAEMON stop
  19.     echo "$NAME."
  20.     ;;
  21.   reload)
  22.         echo -n "Reloading $DESC: "
  23.     $DAEMON reload
  24.     echo "$NAME."
  25.     ;;
  26.   restart|force-reload)
  27.     echo -n "Restarting $DESC: "
  28.     $DAEMON restart
  29.     echo "$NAME."
  30.     ;;
  31.   status)
  32.       $DAEMON status
  33.     ;;
  34.   *)
  35.     N="/etc/init.d/$NAME"
  36.     echo "Usage: $N {start|stop|restart|reload|force-reload|status}" >&2
  37.     exit 1
  38.     ;;
  39. esac
  40.  
  41. exit 0
  42.