]> git.ipfire.org Git - ipfire-2.x.git/blobdiff - src/initscripts/init.d/vdr
vdr backup include added
[ipfire-2.x.git] / src / initscripts / init.d / vdr
index 8f2e28bc5fb11e1429a335e0eb14b01598305c1c..e42887fb8392feceb5a1beaff56abc322dca8b4e 100644 (file)
 case "${1}" in
        start)
                boot_mesg "Starting Video Disk Recorder..."
-               cd /opt/vdr
-               loadproc screen -dmS vdr /opt/vdr/bin/vdr -Pstreamdev-server
+               if [ "$(ps -A | grep runvdr)" != "" ]; then
+                  boot_mesg "Error! Already running!"
+                  echo_failure
+                  exit 1;
+               fi
+               if [ ! -e /dev/dvb/adapter0/frontend0 ]; then
+                  boot_mesg "Error! No DVB tuner found."
+                  echo_failure
+                  exit 0;
+               fi      
+               loadproc screen -dmS vdr /opt/vdr/bin/runvdr
                ;;
                
        stop)
                boot_mesg "Stopping Video Disk Recorder..."
+               killall -s KILL -w runvdr
                killproc /opt/vdr/bin/vdr
                ;;
 
@@ -34,6 +44,7 @@ case "${1}" in
                ;;
 
        status)
+               statusproc /opt/vdr/bin/runvdr
                statusproc /opt/vdr/bin/vdr
                ;;