network.init 339 B

1234567891011121314151617181920212223242526
  1. #!/bin/sh
  2. #PKG busybox
  3. #INIT 40
  4. . /etc/rc.conf
  5. case $1 in
  6. autostart)
  7. test x"${network:-NO}" = x"NO" && exit 0
  8. exec sh $0 start
  9. ;;
  10. start)
  11. [ -f /etc/network/interfaces ] || exit 1
  12. ifup -a
  13. ;;
  14. autostop|stop)
  15. ifdown -a
  16. ;;
  17. restart)
  18. sh $0 stop
  19. exec sh $0 start
  20. ;;
  21. *)
  22. echo "Usage: $0 {start | stop | restart}"
  23. exit 1
  24. ;;
  25. esac
  26. exit $?