diff options
author | Daniel Baumann <daniel@debian.org> | 2009-12-13 21:17:45 +0100 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2009-12-13 21:17:45 +0100 |
commit | 0b285d1c45dbe1c0fc21136ccec2e41c214acdc0 (patch) | |
tree | 7e7cc9f57ceb0d3700ee13541944efb044ae9d60 /helpers/lh_binary_disk | |
parent | ea05bbb3cae86270f0f8b1150566b9925e1abb3d (diff) | |
download | vyos-live-build-0b285d1c45dbe1c0fc21136ccec2e41c214acdc0.tar.gz vyos-live-build-0b285d1c45dbe1c0fc21136ccec2e41c214acdc0.zip |
For consistency, using true|false instead of enabled|disabled in configuration options.
Diffstat (limited to 'helpers/lh_binary_disk')
-rwxr-xr-x | helpers/lh_binary_disk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/helpers/lh_binary_disk b/helpers/lh_binary_disk index 8905e6dc7..2bbd73d98 100755 --- a/helpers/lh_binary_disk +++ b/helpers/lh_binary_disk @@ -95,7 +95,7 @@ case "${LH_DEBIAN_INSTALLER}" in cp "${LH_BASE}"/data/debian-cd/${LH_DISTRIBUTION}/${LH_ARCHITECTURE}_udeb_include binary/.disk/udeb_include ;; - enabled|netinst|live) + true|netinst|live) echo "main" > binary/.disk/base_components touch binary/.disk/base_installable @@ -128,7 +128,7 @@ case "${LH_DEBIAN_INSTALLER}" in cp "${LH_BASE}"/data/debian-cd/${LH_DISTRIBUTION}/${LH_ARCHITECTURE}_businesscard_udeb_include binary/.disk/udeb_include ;; - disabled) + false) echo "${TITLE} ${VERSION} \"${DISTRIBUTION}\" - ${STRING} LIVE Binary $(date +%Y%m%d-%H:%M)" > binary/.disk/info ;; esac |