mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Fixed the 'su' call in 'runvdr'
This commit is contained in:
parent
299a600c3c
commit
732387379d
@ -896,3 +896,7 @@ Antonino Sergi <voyaser@tiscalinet.it>
|
||||
|
||||
Martin Holst <holstm@gmx.de>
|
||||
for reporting a lockup in 1.3.0 when the EPG scanner kicks in
|
||||
|
||||
Robert Huitl <vdr@huitl.de>
|
||||
for fixing 'su' call in 'runvdr' to make it work on systems that require the
|
||||
user name to appear before the command option
|
||||
|
2
HISTORY
2
HISTORY
@ -2558,3 +2558,5 @@ Video Disk Recorder Revision History
|
||||
- Added support for selecting preferred EPG languages (based upon a patch by
|
||||
Teemu Rantanen).
|
||||
- Fixed a 'const' in libsi/si.h (thanks to Marcel Wiesweg).
|
||||
- Fixed the 'su' call in 'runvdr' to make it work on systems that require the
|
||||
user name to appear before the command option (thanks to Robert Huitl).
|
||||
|
4
runvdr
4
runvdr
@ -18,7 +18,7 @@
|
||||
# See the main source file 'vdr.c' for copyright information and
|
||||
# how to reach the author.
|
||||
#
|
||||
# $Id: runvdr 1.11 2003/08/26 16:15:41 kls Exp $
|
||||
# $Id: runvdr 1.12 2004/01/09 16:19:26 kls Exp $
|
||||
|
||||
DVBDIR="../DVB/driver"
|
||||
VDRPRG="./vdr"
|
||||
@ -33,7 +33,7 @@ if [ $LSMOD -eq 0 ] ; then
|
||||
fi
|
||||
|
||||
while (true) do
|
||||
su -c "$VDRCMD" $VDRUSR
|
||||
su $VDRUSR -c "$VDRCMD"
|
||||
if test $? -eq 0 -o $? -eq 2; then exit; fi
|
||||
date
|
||||
echo "restarting VDR"
|
||||
|
Loading…
Reference in New Issue
Block a user