mirror of
https://github.com/openbsd/ports.git
synced 2026-06-17 23:13:55 +02:00
13 lines
192 B
Bash
13 lines
192 B
Bash
#!/bin/ksh
|
|
|
|
daemon="${TRUEPREFIX}/sbin/fastnetmon --daemonize"
|
|
daemon_user="_fastnetmon"
|
|
|
|
. /etc/rc.d/rc.subr
|
|
|
|
rc_pre() {
|
|
install -d -m 750 -o ${daemon_user} /var/run/fastnetmon
|
|
}
|
|
|
|
rc_cmd $1
|