diff options
author | Daniel Baumann <daniel@debian.org> | 2008-02-21 20:52:37 +0100 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 18:36:07 +0100 |
commit | b0c38d67e23c0fbbc0eb6264f81ed7594623cea5 (patch) | |
tree | aa15ffe95d6deddcb1be3abb100e432303ec2602 /helpers/lh_config | |
parent | 953a3d1af6f82d93af4fed3ce98160cf83f1e099 (diff) | |
download | vyos-live-build-b0c38d67e23c0fbbc0eb6264f81ed7594623cea5.tar.gz vyos-live-build-b0c38d67e23c0fbbc0eb6264f81ed7594623cea5.zip |
Renaming LH_MIRROR_BOOTSTRAP* to LH_MIRROR_CHROOT and introducing dedicated LH_MIRROR_BOOTSTRAP for debootstrap/cdebootstrap only.
Diffstat (limited to 'helpers/lh_config')
-rwxr-xr-x | helpers/lh_config | 21 |
1 files changed, 15 insertions, 6 deletions
diff --git a/helpers/lh_config b/helpers/lh_config index 2f2596a20..bb5a7acaf 100755 --- a/helpers/lh_config +++ b/helpers/lh_config @@ -317,8 +317,13 @@ Local_arguments () shift 2 ;; - --mirror-bootstrap-security) - LH_MIRROR_BOOTSTRAP_SECURITY="${2}" + --mirror-chroot) + LH_MIRROR_CHROOT="${2}" + shift 2 + ;; + + --mirror-chroot-security) + LH_MIRROR_CHROOT_SECURITY="${2}" shift 2 ;; @@ -819,13 +824,17 @@ LH_BOOTSTRAP_KEYRING="${LH_BOOTSTRAP_KEYRING}" # (Default: ${LH_DISTRIBUTION}) LH_DISTRIBUTION="${LH_DISTRIBUTION}" -# \$LH_MIRROR_BOOTSTRAP: set mirror to fetch packages from +# \$LH_MIRROR_BOOTSTRAP: set mirror to boostrap from # (Default: ${LH_MIRROR_BOOTSTRAP}) LH_MIRROR_BOOTSTRAP="${LH_MIRROR_BOOTSTRAP}" -# \$LH_MIRROR_BOOTSTRAP_SECURITY: set security mirror to fetch packages from -# (Default: ${LH_MIRROR_BOOTSTRAP_SECURITY}) -LH_MIRROR_BOOTSTRAP_SECURITY="${LH_MIRROR_BOOTSTRAP_SECURITY}" +# \$LH_MIRROR_CHROOT: set mirror to fetch packages from +# (Default: ${LH_MIRROR_CHROOT}) +LH_MIRROR_CHROOT="${LH_MIRROR_CHROOT}" + +# \$LH_MIRROR_CHROOT_SECURITY: set security mirror to fetch packages from +# (Default: ${LH_MIRROR_CHROOT_SECURITY}) +LH_MIRROR_CHROOT_SECURITY="${LH_MIRROR_CHROOT_SECURITY}" # \$LH_MIRROR_BINARY: set mirror which ends up in the image # (Default: ${LH_MIRROR_BINARY}) |