diff options
author | Chris Lamb <chris@chris-lamb.co.uk> | 2008-08-12 22:26:38 +0100 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 19:03:39 +0100 |
commit | 135276b93ee117ae5064a65aeb13ce4cde10f41e (patch) | |
tree | 9a3308b88579a318e38ea40c288925dccc4b1586 | |
parent | 060052c0c5554a916971b0115c2bf6533b486dd0 (diff) | |
download | vyos-live-build-135276b93ee117ae5064a65aeb13ce4cde10f41e.tar.gz vyos-live-build-135276b93ee117ae5064a65aeb13ce4cde10f41e.zip |
Rename internal LH_BOOTAPPEND_PRESEED variable to _LH_BOOTAPPEND_PRESEED
-rwxr-xr-x | functions/defaults.sh | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/functions/defaults.sh b/functions/defaults.sh index a13de1b76..7a7777f60 100755 --- a/functions/defaults.sh +++ b/functions/defaults.sh @@ -557,30 +557,30 @@ Set_defaults () then case "${LH_BINARY_IMAGES}" in iso) - LH_BOOTAPPEND_PRESEED="file=/cdrom/install/${LH_DEBIAN_INSTALLER_PRESEEDFILE}" + _LH_BOOTAPPEND_PRESEED="file=/cdrom/install/${LH_DEBIAN_INSTALLER_PRESEEDFILE}" ;; usb-hdd) - LH_BOOTAPPEND_PRESEED="file=/hd-media/install/${LH_DEBIAN_INSTALLER_PRESEEDFILE}" + _LH_BOOTAPPEND_PRESEED="file=/hd-media/install/${LH_DEBIAN_INSTALLER_PRESEEDFILE}" ;; net) case "${LH_DEBIAN_INSTALLER_PRESEEDFILE}" in *://*) - LH_BOOTAPPEND_PRESEED="file=${LH_DEBIAN_INSTALLER_PRESEEDFILE}" + _LH_BOOTAPPEND_PRESEED="file=${LH_DEBIAN_INSTALLER_PRESEEDFILE}" ;; *) - LH_BOOTAPPEND_PRESEED="file=/${LH_DEBIAN_INSTALLER_PRESEEDFILE}" + _LH_BOOTAPPEND_PRESEED="file=/${LH_DEBIAN_INSTALLER_PRESEEDFILE}" ;; esac ;; esac fi - if [ -z "${LH_BOOTAPPEND_INSTALL}" ] && [ -n ${LH_BOOTAPPEND_PRESEED} ] + if [ -z "${LH_BOOTAPPEND_INSTALL}" ] && [ -n ${_LH_BOOTAPPEND_PRESEED} ] then - LH_BOOTAPPEND_INSTALL="${LH_BOOTAPPEND_PRESEED} -- \${LH_BOOTAPPEND_LIVE}" + LH_BOOTAPPEND_INSTALL="${_LH_BOOTAPPEND_PRESEED} -- \${LH_BOOTAPPEND_LIVE}" else LH_BOOTAPPEND_INSTALL="-- \${LH_BOOTAPPEND_LIVE}" fi |