summaryrefslogtreecommitdiff
blob: 5d9a12fcabc7f018ef70a96b072fb889e932cefb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/sbin/runscript
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/timer_entropyd/files/timer_entropyd.initd,v 1.1 2010/05/22 17:53:44 flameeyes Exp $

depend() {
	need localmount
	before net
	use logger
}

start() {
	ebegin "Starting ${SVCNAME}"
	start-stop-daemon --start --exec /usr/libexec/timer_entropyd
	eend $?
}

stop() {
	ebegin "Stopping ${SVCNAME}"
	start-stop-daemon --stop --exec /usr/libexec/timer_entropyd
	eend $?
}