Make mirror server configurable
This commit is contained in:
parent
fcc4c992e6
commit
7193b4e488
12
buildiso.sh
12
buildiso.sh
|
@ -29,6 +29,7 @@ show_help() {
|
||||||
echo -e " -o: Create the ISO as <output_filename> instead of the default."
|
echo -e " -o: Create the ISO as <output_filename> instead of the default."
|
||||||
echo -e " -u: Change 'deploy' user to a new username."
|
echo -e " -u: Change 'deploy' user to a new username."
|
||||||
echo -e " -c: Change CPU architecture to a new architecture [x86_64/aarch64]."
|
echo -e " -c: Change CPU architecture to a new architecture [x86_64/aarch64]."
|
||||||
|
echo -e " -m: Change the mirror server (default 'https://debian.mirror.rafal.ca')."
|
||||||
echo -e " -a: Preserve live-build artifacts."
|
echo -e " -a: Preserve live-build artifacts."
|
||||||
echo -e " -k: Preserve live-build config."
|
echo -e " -k: Preserve live-build config."
|
||||||
}
|
}
|
||||||
|
@ -69,6 +70,10 @@ while [ $# -gt 0 ]; do
|
||||||
fi
|
fi
|
||||||
shift 2
|
shift 2
|
||||||
;;
|
;;
|
||||||
|
-m)
|
||||||
|
mirror_server="${2}"
|
||||||
|
shift 2
|
||||||
|
;;
|
||||||
-a)
|
-a)
|
||||||
preserve_artifacts='y'
|
preserve_artifacts='y'
|
||||||
shift
|
shift
|
||||||
|
@ -95,6 +100,9 @@ fi
|
||||||
if [[ -z ${deployusername} ]]; then
|
if [[ -z ${deployusername} ]]; then
|
||||||
deployusername="deploy"
|
deployusername="deploy"
|
||||||
fi
|
fi
|
||||||
|
if [[ -z ${mirror_server} ]]; then
|
||||||
|
mirror_server="https://debian.mirror.rafal.ca"
|
||||||
|
fi
|
||||||
|
|
||||||
mkdir -p artifacts/lb
|
mkdir -p artifacts/lb
|
||||||
pushd artifacts/lb &>/dev/null
|
pushd artifacts/lb &>/dev/null
|
||||||
|
@ -108,8 +116,8 @@ echo "Initializing config..."
|
||||||
lb config \
|
lb config \
|
||||||
--distribution buster \
|
--distribution buster \
|
||||||
--archive-areas "main contrib non-free" \
|
--archive-areas "main contrib non-free" \
|
||||||
--mirror-bootstrap "https://debian.mirror.rafal.ca/debian" \
|
--mirror-bootstrap "${mirror_server}/debian" \
|
||||||
--mirror-chroot-security "https://debian.mirror.rafal.ca/debian-security" \
|
--mirror-chroot-security "${mirror_server}/debian-security" \
|
||||||
--apt-recommends false \
|
--apt-recommends false \
|
||||||
${arch_config_append} || fail "Failed to initialize live-build config"
|
${arch_config_append} || fail "Failed to initialize live-build config"
|
||||||
echo
|
echo
|
||||||
|
|
Loading…
Reference in New Issue