openswan.init 349 B

1234567891011121314151617181920212223242526272829
  1. #!/bin/sh
  2. #PKG openswan
  3. #INIT 60
  4. . /etc/rc.conf
  5. case $1 in
  6. autostop) ;;
  7. autostart)
  8. test x"${ipsec:-NO}" = x"NO" && exit 0
  9. exec sh $0 start
  10. ;;
  11. start)
  12. /usr/libexec/ipsec/setup start
  13. ;;
  14. stop)
  15. /usr/libexec/ipsec/setup stop
  16. ;;
  17. restart)
  18. sh $0 stop
  19. sleep 3
  20. sh $0 start
  21. ;;
  22. *)
  23. echo "Usage: $0 {start | stop | restart}"
  24. exit 1
  25. ;;
  26. esac
  27. exit $?