diff options
author | Richard Nelson <unixabg@gmail.com> | 2012-12-19 22:15:24 -0600 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2012-12-20 12:27:49 +0100 |
commit | 2094b4570de283e5ef4dd9d03a284fb98a812097 (patch) | |
tree | 1552fa528f22d9b320a3cd952f781d03b73a69bc | |
parent | 4e283bbd7a00eabc29cf1e3ae0c65e940d617f4b (diff) | |
download | vyos-live-build-2094b4570de283e5ef4dd9d03a284fb98a812097.tar.gz vyos-live-build-2094b4570de283e5ef4dd9d03a284fb98a812097.zip |
Unify _DEBUG variable values to be true or false for l-b-cgi.
-rwxr-xr-x | frontends/cgi/live-build-cgi | 4 | ||||
-rwxr-xr-x | frontends/cgi/live-build-cgi.cron | 6 | ||||
-rw-r--r-- | frontends/cgi/live-build-cgi.default | 4 |
3 files changed, 7 insertions, 7 deletions
diff --git a/frontends/cgi/live-build-cgi b/frontends/cgi/live-build-cgi index 54ac528cc..990af44dc 100755 --- a/frontends/cgi/live-build-cgi +++ b/frontends/cgi/live-build-cgi @@ -22,8 +22,8 @@ fi _HOSTNAME="$(hostname -f)" -# Turn on debug if enabled -if [ "${_DEBUG}" = "enabled" ] +# Turn on debug if true +if [ "${_DEBUG}" = "true" ] then set -x fi diff --git a/frontends/cgi/live-build-cgi.cron b/frontends/cgi/live-build-cgi.cron index d71661f62..13d7e06b5 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 diff --git a/frontends/cgi/live-build-cgi.default b/frontends/cgi/live-build-cgi.default index 8427de239..41aa58dc4 100644 --- a/frontends/cgi/live-build-cgi.default +++ b/frontends/cgi/live-build-cgi.default @@ -1,10 +1,10 @@ # Defaults for /etc/cron.daily/live-build-cgi -_WEBBUILD="disabled" +_WEBBUILD="false" _MODE="debian" -_DEBUG="disabled" +_DEBUG="false" _DESTDIR="/srv/debian-live/build/www" _TEMPLATES="/usr/share/live/build/templates/cgi/${_MODE}" |