Adding upstream version 3.0~b1.
[live-boot-grml.git] / scripts / boot / 0110-debug
index a74dcb7..f223e93 100755 (executable)
@@ -13,10 +13,15 @@ Debug ()
                esac
        done
 
-       if [ "${LIVE_DEBUG}" != "true" ]
-       then
-               return 0
-       fi
+       case "${LIVE_DEBUG}" in
+               true)
+                       ;;
 
+               *)
+                       return 0
+                       ;;
+       esac
+
+       # Write the trace output
        set -x
 }