ripngd.init
上传用户:xiaozhuqw
上传日期:2009-11-15
资源大小:1338k
文件大小:1k
源码类别:

网络

开发平台:

Unix_Linux

  1. #!/bin/bash
  2. #
  3. # chkconfig: - 16 84
  4. # description: A RIP routing engine for use with Zebra and IPv6
  5. #
  6. # processname: ripngd
  7. # config: /etc/ripngd.conf
  8. # source function library
  9. . /etc/rc.d/init.d/functions
  10. RETVAL=0
  11. [ -f /etc/ripngd.conf ] || exit 0
  12. case "$1" in
  13.   start)
  14. echo -n "Starting ripngd: "
  15.         daemon /usr/sbin/ripngd -d
  16. RETVAL=$?
  17. [ $RETVAL -eq 0 ] && touch /var/lock/subsys/ripngd
  18. echo
  19. ;;
  20.   stop)
  21. echo -n "Shutting down ripngd: "
  22. killproc ripngd
  23. RETVAL=$?
  24. [ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/ripngd
  25. echo
  26. ;;
  27.   restart)
  28.         $0 stop
  29.         $0 start
  30. RETVAL=$?
  31.         ;;
  32.   status)
  33.         status ripngd
  34. RETVAL=$?
  35.         ;;
  36.   *)
  37. echo "Usage: ripngd {start|stop|restart|status}"
  38. exit 1
  39. esac
  40. exit $RETVAL