From 111b8c3f783dca9c6b5223195f4fa178f30f9bed Mon Sep 17 00:00:00 2001 From: Klaus Schmidinger Date: Tue, 26 Aug 2003 16:15:41 +0200 Subject: Explicitly handling exit value 0 and 2 --- runvdr | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/runvdr b/runvdr index 6fdd13e1..9c639914 100755 --- a/runvdr +++ b/runvdr @@ -18,7 +18,7 @@ # See the main source file 'vdr.c' for copyright information and # how to reach the author. # -# $Id: runvdr 1.10 2003/08/17 14:27:31 kls Exp $ +# $Id: runvdr 1.11 2003/08/26 16:15:41 kls Exp $ DVBDIR="../DVB/driver" VDRPRG="./vdr" @@ -34,7 +34,7 @@ if [ $LSMOD -eq 0 ] ; then while (true) do su -c "$VDRCMD" $VDRUSR - if test $? -ne 1; then exit; fi + if test $? -eq 0 -o $? -eq 2; then exit; fi date echo "restarting VDR" $KILL $VDRPRG -- cgit v1.2.3