]> git.ipfire.org Git - people/teissler/ipfire-2.x.git/blobdiff - src/initscripts/init.d/vdr
httpscert: Increase size of the RSA key to 4096.
[people/teissler/ipfire-2.x.git] / src / initscripts / init.d / vdr
index 4cfb7967fec8336c3b7408dfa94765dc4e320173..759ad344d8b54c98edf210106a07eca7af5962fb 100644 (file)
 case "${1}" in
        start)
                boot_mesg "Starting Video Disk Recorder..."
-               if [ "$(ps -A | grep runvdr)" != "" ]; then
-                  boot_mesg "Error! Alrady run!"
-                  echo_failure
-                  exit 1;
-               fi
-               if [ ! -e /dev/dvb/adapter0/frontend0 ]; then
-                  boot_mesg "Error! No DVB tuner found."
-                  echo_failure
-                  exit 1;
-               fi      
-               loadproc screen -dmS vdr /opt/vdr/bin/runvdr
+               /usr/sbin/runvdr >/dev/null 2>&1 &
+               evaluate_retval
                ;;
                
        stop)
                boot_mesg "Stopping Video Disk Recorder..."
-               killall -s KILL -w runvdr
-               killproc /opt/vdr/bin/vdr
+               killproc /usr/sbin/vdr
                ;;
 
        restart)
@@ -44,8 +34,8 @@ case "${1}" in
                ;;
 
        status)
-               statusproc /opt/vdr/bin/runvdr
-               statusproc /opt/vdr/bin/vdr
+               statusproc /usr/sbin/runvdr
+               statusproc /usr/sbin/vdr
                ;;
 
        *)