mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
14 lines
218 B
Bash
Executable File
14 lines
218 B
Bash
Executable File
#!/bin/sh
|
|
|
|
DVBDIR='../DVB/driver'
|
|
VDRCMD='./vdr -w 60'
|
|
|
|
while test 1; do
|
|
# (cd $DVBDIR; make reload)
|
|
# sleep 3
|
|
if $VDRCMD; then exit; fi
|
|
date
|
|
echo "restarting VDR"
|
|
sleep 10
|
|
done
|