debian-start-stop1
上传用户:seven77cht
上传日期:2007-01-04
资源大小:486k
文件大小:1k
源码类别:

浏览器

开发平台:

Unix_Linux

  1. #! /bin/sh
  2. # wwwoffled script to go e.g., into /etc/init.d/ scripts.
  3. #
  4. #               Modified by Joerg Wittenberger <joerg.wittenberger@pobox.com>
  5. #               from skeleton
  6. # file by Miquel van Smoorenburg <miquels@cistron.nl>.
  7. # Modified for Debian GNU/Linux
  8. # by Ian Murdock <imurdock@gnu.ai.mit.edu>.
  9. #
  10. PATH=/usr/local/sbin:/sbin:/bin:/usr/sbin:/usr/bin
  11. NAME=wwwoffled
  12. DAEMON=/usr/sbin/$NAME
  13. test -f $DAEMON || exit 0
  14. set -e
  15. case "$1" in
  16.   start)
  17.     start-stop-daemon --start --verbose --pidfile /var/run/$NAME.pid --exec $DAEMON &
  18.     ;;
  19.   stop)
  20.     start-stop-daemon --stop --verbose --pidfile /var/run/$NAME.pid --exec $DAEMON
  21.     ;;
  22.   reload)
  23.     # echo "Reloading $NAME configuration files"
  24.     # start-stop-daemon --stop --signal 1 --quiet --pidfile /var/run/$NAME.pid --exec $DAEMON
  25.     ;;
  26.   *)
  27.     # echo "Usage: /etc/init.d/$NAME {start|stop|reload}"
  28.     echo "Usage: /etc/init.d/$NAME {start|stop}"
  29.     exit 1
  30.     ;;
  31. esac
  32. exit 0