diff options
author | Richard Nelson <unixabg@gmail.com> | 2012-12-19 22:15:24 -0600 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2012-12-20 07:36:57 +0100 |
commit | 386488c833a007c2fda1011ba2db4e86a0840307 (patch) | |
tree | 6d10c2f3b7d7e1b684e48642a827b830b53592ce /frontends/cgi/live-build-cgi.cron | |
parent | ab9cf9e4b3f2ae48f218a80b364e09dabf6ece25 (diff) | |
download | vyos-live-build-386488c833a007c2fda1011ba2db4e86a0840307.tar.gz vyos-live-build-386488c833a007c2fda1011ba2db4e86a0840307.zip |
Unify _DEBUG variable values to be true or false for l-b-cgi.
Diffstat (limited to 'frontends/cgi/live-build-cgi.cron')
-rwxr-xr-x | frontends/cgi/live-build-cgi.cron | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/frontends/cgi/live-build-cgi.cron b/frontends/cgi/live-build-cgi.cron index 2f5cf043e..1d21f8f02 100755 --- a/frontends/cgi/live-build-cgi.cron +++ b/frontends/cgi/live-build-cgi.cron @@ -20,15 +20,15 @@ else fi # Exit if disabled -if [ "${_WEBBUILD}" != "enabled" ] +if [ "${_WEBBUILD}" != "true" ] then exit 0 fi _HOSTNAME="$(hostname -f)" -# Turn on debug if enabled -if [ "${_DEBUG}" = "enabled" ] +# Turn on debug if true +if [ "${_DEBUG}" = "true" ] then set -x fi |