diff options
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 2f2596a..bb5a7ac 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}) |