ports/net/bro/pkg/zeek.rc

21 lines
230 B
Text
Raw Normal View History

2023-08-16 22:26:55 +00:00
#!/bin/ksh
daemon="${TRUEPREFIX}/bin/zeekctl"
daemon_flags="start"
. /etc/rc.d/rc.subr
rc_check() {
rc_exec "${daemon} status"
}
rc_reload() {
rc_exec "${daemon} update"
}
rc_stop() {
rc_exec "${daemon} stop"
}
rc_cmd $1