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

浏览器

开发平台:

Unix_Linux

  1. #!/bin/sh
  2. # wwwoffle daemon start/stop script.
  3. #
  4. # Copyright Andrew M. Bishop 1997 (was slackware-rc.local)
  5. # Modified  A. Kupries       1998, for usage by the S.u.S.e init system.
  6. #
  7. # Usually this is put in /etc/init.d (at least on machines SYSV R4
  8. # based systems) and linked to /etc/rc[23].d/S18wwwoffle. When this is
  9. # done the wwwoffle server will be started when the machine is started.
  10. PATH=/sbin:/usr/bin:/usr/sbin:/bin
  11. basedir=/usr/local
  12. bindir=/usr/local/bin
  13. sbindir=/usr/local/sbin
  14. export PATH
  15. mode=$1
  16. # Safeguard (relative paths, core dumps..)
  17. cd $basedir
  18. case "$mode" in
  19.   'start')
  20.     # Start deamon
  21.     if [ -x $sbindir/wwwoffled ]; then
  22. echo "Starting wwwoffled."
  23. $sbin/wwwoffled -c /var/spool/wwwoffle/wwwoffle.conf
  24.     fi
  25.     ;;
  26.   'stop')
  27.     # Stop deamon
  28.     echo "Shutting down wwwoffled."
  29.     $bindir/wwwoffle -kill -c /var/spool/wwwoffle/wwwoffle.conf
  30.     ;;
  31.   *)
  32.     # usage
  33.     echo "usage: $0 start|stop"
  34.     exit 1
  35.     ;;
  36. esac