From 701b5affd403d9a25df311fc422dd33eb4526c34 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 13 Dec 2009 21:17:45 +0100 Subject: For consistency, using true|false instead of enabled|disabled in configuration options. --- helpers/lh_binary_debian-installer | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'helpers/lh_binary_debian-installer') diff --git a/helpers/lh_binary_debian-installer b/helpers/lh_binary_debian-installer index 9fccdfa88..7f5af9556 100755 --- a/helpers/lh_binary_debian-installer +++ b/helpers/lh_binary_debian-installer @@ -28,10 +28,10 @@ then exit 0 fi -if [ "${_DEBUG}" = "enabled" ] +if [ "${_DEBUG}" = "true" ] then WGET_OPTIONS="${WGET_OPTIONS} --verbose" -elif [ "${_QUIET}" = "enabled" ] +elif [ "${_QUIET}" = "true" ] then WGET_OPTIONS="${WGET_OPTIONS} --quiet" else @@ -40,10 +40,10 @@ fi # Check d-i configuration case "${LH_DEBIAN_INSTALLER}" in - enabled|cdrom|netinst|netboot|businesscard|live) + true|cdrom|netinst|netboot|businesscard|live) ;; - disabled) + false) exit 0 ;; @@ -287,7 +287,7 @@ else # Downloading graphical-installer DOWNLOAD_GTK_INSTALLER=0 - if [ "${LH_DEBIAN_INSTALLER_GUI}" = "enabled" ] + if [ "${LH_DEBIAN_INSTALLER_GUI}" = "true" ] then case "${LH_ARCHITECTURE}" in amd64|i386) -- cgit v1.2.3