openswan.init 336 B

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