openvpn.init 404 B

12345678910111213141516171819202122232425262728293031
  1. #!/bin/sh
  2. #PKG openvpn
  3. #INIT 60
  4. . /etc/rc.conf
  5. case $1 in
  6. autostop) ;;
  7. autostart)
  8. test x"${openvpn:-NO}" = x"NO" && exit 0
  9. exec sh $0 start
  10. ;;
  11. start)
  12. for c in $(ls /etc/openvpn/*.conf 2>&-); do
  13. openvpn --cd /etc/openvpn --config "$c" --daemon
  14. done
  15. ;;
  16. stop)
  17. pkill openvpn
  18. ;;
  19. restart)
  20. sh $0 stop
  21. sleep 3
  22. sh $0 start
  23. ;;
  24. *)
  25. echo "Usage: $0 {start | stop | restart}"
  26. exit 1
  27. ;;
  28. esac
  29. exit $?