13 lines
156 B
Text
13 lines
156 B
Text
|
#!/bin/ksh
|
||
|
|
||
|
daemon="${TRUEPREFIX}/bin/motion -b"
|
||
|
daemon_user="_motion"
|
||
|
|
||
|
. /etc/rc.d/rc.subr
|
||
|
|
||
|
rc_pre() {
|
||
|
install -d -o _motion /var/run/motion
|
||
|
}
|
||
|
|
||
|
rc_cmd $1
|