diff options
author | Daniel Baumann <daniel@debian.org> | 2008-11-01 15:01:33 +0100 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 19:03:44 +0100 |
commit | ad6b01b388767f2efd39e4b4f10974461fc5220d (patch) | |
tree | bf01253e2fca7538966cdcab8bcd4ba05704ac2a /functions | |
parent | cb0894b3b3d13da593a36cd45d5e0383adfd78f8 (diff) | |
download | vyos-live-build-ad6b01b388767f2efd39e4b4f10974461fc5220d.tar.gz vyos-live-build-ad6b01b388767f2efd39e4b4f10974461fc5220d.zip |
Generalizing internal LH_VERBOSE variable.
Diffstat (limited to 'functions')
-rwxr-xr-x | functions/arguments.sh | 2 | ||||
-rwxr-xr-x | functions/defaults.sh | 2 | ||||
-rwxr-xr-x | functions/echo.sh | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/functions/arguments.sh b/functions/arguments.sh index 877e0d071..3d0d869ed 100755 --- a/functions/arguments.sh +++ b/functions/arguments.sh @@ -58,7 +58,7 @@ Arguments () ;; --verbose) - LH_VERBOSE="enabled" + _VERBOSE="enabled" shift ;; diff --git a/functions/defaults.sh b/functions/defaults.sh index e6d71a502..281bed484 100755 --- a/functions/defaults.sh +++ b/functions/defaults.sh @@ -224,7 +224,7 @@ Set_defaults () _DEBUG="${_DEBUG:-disabled}" _FORCE="${_FORCE:-disabled}" _QUIET="${_QUIET:-disabled}" - LH_VERBOSE="${LH_VERBOSE:-disabled}" + _VERBOSE="${_VERBOSE:-disabled}" ## config/bootstrap diff --git a/functions/echo.sh b/functions/echo.sh index 56eb344f5..816221262 100755 --- a/functions/echo.sh +++ b/functions/echo.sh @@ -70,7 +70,7 @@ Echo_verbose () STRING="${1}" shift - if [ "${LH_VERBOSE}" = "enabled" ] + if [ "${_VERBOSE}" = "enabled" ] then if [ "${_L10N}" = "false" ] then |