blob: b13f61f3cf97a10be89f7c02cf50e0bfc01b5ea5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/sbin/runscript
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/net-www/vdradmin-am/files/vdradmin,v 1.1 2006/07/14 15:16:36 hd_brummy Exp $
depend() {
need vdr
}
start() {
ebegin "Starting vdradmind"
start-stop-daemon --start --background --exec /usr/bin/vdradmind.pl
eend $?
}
stop() {
ebegin "Stopping vdradmind"
start-stop-daemon --stop --quiet --pidfile /var/run/vdradmind.pid
eend $?
}
|