snort.init 370 B

1234567891011121314151617181920212223
  1. #!/bin/sh
  2. #PKG snort
  3. #INIT 60
  4. . /etc/rc.conf
  5. case $1 in
  6. autostop) ;;
  7. autostart)
  8. test x"${snort:-NO}" = x"NO" && exit 0
  9. test x"$snort" = x"DAEMON" && test -x /bin/mksh && exec mksh -T- $0 start
  10. exec sh $0 start
  11. ;;
  12. start)
  13. /usr/sbin/snort $snort_flags
  14. ;;
  15. stop)
  16. kill $(pgrep -f /usr/sbin/snort)
  17. ;;
  18. *)
  19. echo "usage: $0 {start | stop | restart}"
  20. exit 1
  21. esac
  22. exit $?