script to start vdr with softdevice

changes on vdr and w_scan scripts
This commit is contained in:
Arne Fitzenreiter
2008-04-17 19:19:33 +02:00
parent 3a231e36e2
commit 2adf52860c
7 changed files with 30 additions and 5 deletions

View File

@@ -18,7 +18,11 @@
case "${1}" in
start)
boot_mesg "Starting Video Disk Recorder..."
cd /opt/vdr
if [ "$(ps -A | grep runvdr)" != "" ]; then
boot_mesg "Error! Alrady run!"
echo_failure
exit 1;
fi
loadproc screen -dmS vdr /opt/vdr/bin/runvdr
;;