summaryrefslogtreecommitdiff
path: root/runvdr
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2006-02-04 15:26:13 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2006-02-04 15:26:13 +0100
commitb6920cd2d81b2dab91136da963da2dc186f493a7 (patch)
tree0dd9a27be45a698c15ab6469c2aea3556e26d648 /runvdr
parentd5c739790b51c1503bad54b2edf384f359ed2a3b (diff)
downloadvdr-b6920cd2d81b2dab91136da963da2dc186f493a7.tar.gz
vdr-b6920cd2d81b2dab91136da963da2dc186f493a7.tar.bz2
The 'runvdr' script no longer uses the $VDRUSR environment variable
Diffstat (limited to 'runvdr')
-rwxr-xr-xrunvdr11
1 files changed, 4 insertions, 7 deletions
diff --git a/runvdr b/runvdr
index 7fd4d819..355549cb 100755
--- a/runvdr
+++ b/runvdr
@@ -5,12 +5,9 @@
# If VDR exits abnormally, the driver will be reloaded
# and VDR restarted.
#
-# Set the environment variable VDRUSR to the user id you
-# want VDR to run with. If VDRUSR is not set, VDR will run
-# as user 'vdr'.
-#
# Since this script loads the DVB driver, it must be started
-# as user 'root'.
+# as user 'root'. Add the option "-u username" to run VDR
+# under the given user name.
#
# Any command line parameters will be passed on to the
# actual 'vdr' program.
@@ -18,11 +15,11 @@
# See the main source file 'vdr.c' for copyright information and
# how to reach the author.
#
-# $Id: runvdr 1.15 2005/12/31 13:30:11 kls Exp $
+# $Id: runvdr 1.16 2006/02/04 15:20:48 kls Exp $
DVBDIR="../DVB/driver"
VDRPRG="./vdr"
-VDRCMD="$VDRPRG -u $VDRUSR -w 60 $*"
+VDRCMD="$VDRPRG -w 60 $*"
LSMOD="`/sbin/lsmod | grep -w '^dvb' | wc -l`"
KILL="/usr/bin/killall -q -TERM"