blob: 0eefc729c3cc5edad953fdef07bce8af4179e873 (
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
29
30
31
32
33
34
35
|
#!/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
}
set_charset() {
local capfile=/usr/share/vdr/capabilities.sh
[[ -e ${capfile} ]] && source ${capfile}
if [[ "${CAP_UTF8}" == "1" || "${VDR_CAN_HANDLE_UTF8}" == "yes" ]]; then
# do not clean out utf8
:
else
l=$(locale | sed -e 's/\.[uU][tT][fF]\(-\)\?8//' -e 's/^/export /')
eval $l
fi
}
start() {
ebegin "Starting vdradmin-am"
: ${VDRADMIN_USER:=vdradmin}
set_charset
start-stop-daemon --start --background --chuid ${VDRADMIN_USER} --exec /usr/bin/vdradmind.pl
eend $?
}
stop() {
ebegin "Stopping vdradmin-am"
start-stop-daemon --stop --quiet --pidfile /var/run/vdradmind.pid
eend $?
}
|