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

浏览器

开发平台:

Unix_Linux

  1. #!/bin/sh
  2. # chkconfig: 2345 85 20
  3. # description: WWW proxy allowing offline view of cached pages 
  4. # =============================================================================
  5. #
  6. # Description:
  7. # This shell script takes care of starting and stopping wwwoffled.
  8. #
  9. # Author[s]:
  10. # Gianpaolo Macario gianpi@geocities.com
  11. #       Peter Stamfest Peter.Stamfest@vws.or.at
  12. #
  13. # Revision History:
  14. # 11-NOV-1998 peter Added chkconfig support, restart and status 
  15. # options, changed usage message (stripped the
  16. # ".init")
  17. # 21-JUL-1997 gianpi Configured for wwwoffle-1.2c
  18. # 10-MAR-1997 gianpi Initial writing
  19. # =============================================================================
  20. # Source function library.
  21. . /etc/rc.d/init.d/functions
  22. # Source networking configuration.
  23. . /etc/sysconfig/network
  24. # Check that networking is up.
  25. [ ${NETWORKING} = "no" ] && exit 0
  26. [ -f /usr/local/sbin/wwwoffled ] || exit 0
  27. # See how we were called.
  28. case "$1" in
  29.   start)
  30.         # Start daemons.
  31.         echo -n "Starting wwwoffled: "
  32.         daemon /usr/local/sbin/wwwoffled -c /etc/wwwoffle.conf
  33.         echo
  34.         ;;
  35.   stop)
  36.         # Stop daemons.
  37.         echo -n "Shutting down wwwoffled: "
  38. killproc wwwoffled
  39.         echo "done"
  40.         ;;
  41.   restart)
  42.         echo -n "Restarting wwwoffled: "
  43. killproc wwwoffled -HUP
  44. echo
  45.         ;;
  46.   status)
  47. status wwwoffled
  48.         ;;
  49.   *)
  50.         echo "Usage: wwwoffle {start|stop|restart|status}"
  51.         exit 1
  52. esac
  53. exit 0
  54. # === End of File ===