mirror of
https://git.freebsd.org/ports.git
synced 2025-06-21 12:40:45 -04:00
24 lines
380 B
Bash
24 lines
380 B
Bash
#!/bin/sh
|
|
|
|
# PROVIDE: motion
|
|
# REQUIRE: DAEMON
|
|
# KEYWORD: shutdown
|
|
#
|
|
# Add the following line in /etc/rc.conf to enable motion at startup
|
|
#
|
|
# motion_enable="YES"
|
|
|
|
. /etc/rc.subr
|
|
|
|
name=motion
|
|
rcvar=motion_enable
|
|
|
|
load_rc_config $name
|
|
|
|
: ${motion_enable:=NO}
|
|
|
|
command=%%PREFIX%%/bin/${name}
|
|
pidfile="/var/run/${name}.pid"
|
|
required_files=%%ETCDIR%%/${name}.conf
|
|
|
|
run_rc_command "$1"
|