mirror of
https://github.com/Motion-Project/motion.git
synced 2026-02-01 10:31:34 -05:00
27 lines
450 B
Bash
27 lines
450 B
Bash
#!/bin/sh
|
|
#
|
|
# motion.sh for rc.d usage 2006 Angel Carpintero
|
|
#
|
|
# Add the following line in /etc/rc.conf to enable motion at startup
|
|
#
|
|
# motion_enable="YES"
|
|
#
|
|
|
|
# PROVIDE: motion
|
|
# REQUIRE: DAEMON
|
|
# KEYWORD: shutdown
|
|
|
|
. /etc/rc.subr
|
|
|
|
motion_enable="${motion_enable-NO}"
|
|
|
|
name="motion"
|
|
rcvar=`set_rcvar`
|
|
|
|
command="@BIN_PATH@/${name}"
|
|
pidfile="/var/run/${name}.pid"
|
|
required_files="/usr/local/etc/${name}.conf"
|
|
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|