aboutsummaryrefslogtreecommitdiff
path: root/multimedia/motion/files/motion.init
blob: 2aae92092cd7a839160c122af83823cc050d3e58 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/sh /etc/rc.common

START=94
USE_PROCD=1

PROG="/usr/bin/motion"
CONF="/etc/motion.conf"

start_service() {
	local enabled

	config_load "motion"
	config_get_bool enabled "general" "enabled" 0
	[ "$enabled" -gt 0 ] || return 1

	procd_open_instance

	procd_set_param command "$PROG"
	procd_append_param command -c "$CONF"

	procd_close_instance
}