X-Git-Url: http://git.grml.org/?a=blobdiff_plain;f=scripts%2Fboot%2F0110-debug;h=f223e9339428d556864e99d4070f41bc7a7e4ee0;hb=c32e1b2f0f8cbf4a11d198824f463cf7f7455a76;hp=a74dcb72ebd8e6762be30360208f17cef57d07bc;hpb=e8ced87a39fc0a748506f0663ac61449685d5957;p=live-boot-grml.git diff --git a/scripts/boot/0110-debug b/scripts/boot/0110-debug index a74dcb7..f223e93 100755 --- a/scripts/boot/0110-debug +++ b/scripts/boot/0110-debug @@ -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 }