X-Git-Url: http://git.grml.org/?a=blobdiff_plain;f=scripts%2Fboot%2F0110-debug;h=f223e9339428d556864e99d4070f41bc7a7e4ee0;hb=919b32db2c858e23da7dd52b6501127ddc108feb;hp=a74dcb72ebd8e6762be30360208f17cef57d07bc;hpb=e5efea97c9573d24a5cd4aa051a5f39696913bcf;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 }