diff options
author | nl6720 <nl6720@gmail.com> | 2020-06-30 13:30:51 +0300 |
---|---|---|
committer | nl6720 <nl6720@gmail.com> | 2020-06-30 18:10:55 +0300 |
commit | 511ca9d95d9a120e6d5eec080a23c03453e51856 (patch) | |
tree | 6f832d59ec628d4f0a5a6bd4dfee66a205edf975 /configs/releng/airootfs/usr | |
parent | 3cf8e738ed7c83c786b0a831f630cef6eca297df (diff) | |
download | archiso32-511ca9d95d9a120e6d5eec080a23c03453e51856.tar.xz |
Move choose-mirror script to /usr/local/bin/
/etc/systemd/scripts/ is not a standard directory.
Run shellchek on the choose-mirror script.
Diffstat (limited to 'configs/releng/airootfs/usr')
-rwxr-xr-x | configs/releng/airootfs/usr/local/bin/choose-mirror | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/configs/releng/airootfs/usr/local/bin/choose-mirror b/configs/releng/airootfs/usr/local/bin/choose-mirror new file mode 100755 index 0000000..0ae0806 --- /dev/null +++ b/configs/releng/airootfs/usr/local/bin/choose-mirror @@ -0,0 +1,26 @@ +#!/bin/bash + +get_cmdline() { + local param + for param in $(< /proc/cmdline); do + case "${param}" in + $1=*) echo "${param##*=}"; + return 0 + ;; + esac + done +} + +mirror=$(get_cmdline mirror) +[[ $mirror = auto ]] && mirror=$(get_cmdline archiso_http_srv) +[[ $mirror ]] || exit 0 + +mv /etc/pacman.d/mirrorlist /etc/pacman.d/mirrorlist.orig +cat >/etc/pacman.d/mirrorlist << EOF +# +# Arch Linux repository mirrorlist +# Generated by archiso +# + +Server = ${mirror%%/}/\$repo/os/\$arch +EOF |