diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2004-01-09 16:21:03 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2004-01-09 16:21:03 +0100 |
commit | 732387379d1ba334693064965ae4d0652493f8b8 (patch) | |
tree | 49506bd22512100bd212c7cc1dd24e55b53b06a4 /runvdr | |
parent | 299a600c3ce1ae355842be39d452464e524b7e3b (diff) | |
download | vdr-732387379d1ba334693064965ae4d0652493f8b8.tar.gz vdr-732387379d1ba334693064965ae4d0652493f8b8.tar.bz2 |
Fixed the 'su' call in 'runvdr'
Diffstat (limited to 'runvdr')
-rwxr-xr-x | runvdr | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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" |