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