summaryrefslogtreecommitdiff
blob: 7b930bfb0184ae78a3304ee88fe0c411ff636977 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/sbin/runscript
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/motion/files/motion.init,v 1.1 2006/05/30 18:44:04 lu_zero Exp $

opts="${opts} reload"

depend() {
	need modules
}

start() {
	ebegin "Starting motion detection"
	start-stop-daemon --start --quiet --exec /usr/bin/motion
	eend $?
}

stop() {
	ebegin "Stopping motion detection"
	start-stop-daemon --stop --quiet --exec /usr/bin/motion
	eend $?
}

reload() {
	ebegin "Reloading motion detection configuration"
	start-stop-daemon --stop --signal HUP --exec /usr/bin/motion
	eend $?
}