From beaa74f4fc16672b7fba78ae08618b82d463018e Mon Sep 17 00:00:00 2001 From: Michael Aldridge Date: Fri, 14 Sep 2018 02:00:05 -0700 Subject: [PATCH] Update remaining mirror references --- Makefile | 2 +- dracut/autoinstaller/autoinstall.cfg | 4 ++-- dracut/autoinstaller/install.sh | 4 ++-- installer.sh.in | 2 +- lib.sh.in | 6 +++--- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Makefile b/Makefile index 774bdc9..caa67ed 100644 --- a/Makefile +++ b/Makefile @@ -27,7 +27,7 @@ ALL_PXE_ARCHS=$(foreach arch,$(PXE_ARCHS),void-$(arch)-NETBOOT-$(DATE).tar.gz) SUDO := sudo -XBPS_REPOSITORY := -r https://repo.voidlinux.eu/current -r https://repo.voidlinux.eu/current/musl -r https://repo.voidlinux.eu/current/aarch64 +XBPS_REPOSITORY := -r https://alpha.de.repo.voidlinux.org/current -r https://alpha.de.repo.voidlinux.org/current/musl -r https://alpha.de.repo.voidlinux.org/current/aarch64 COMPRESSOR_THREADS=2 %.sh: %.sh.in diff --git a/dracut/autoinstaller/autoinstall.cfg b/dracut/autoinstaller/autoinstall.cfg index b50296c..432898d 100644 --- a/dracut/autoinstaller/autoinstall.cfg +++ b/dracut/autoinstaller/autoinstall.cfg @@ -20,8 +20,8 @@ # XBPS Configuration # === # xbpsrepository: which repo should the install pull from -# default: http://repo.voidlinux.eu/current -#xbpsrepository="http://repo.voidlinux.eu/current" +# default: http://alpha.de.repo.voidlinux.org/current +#xbpsrepository="http://alpha.de.repo.voidlinux.org/current" # pkgs: additional packages to install into the target # default: none diff --git a/dracut/autoinstaller/install.sh b/dracut/autoinstaller/install.sh index ff0a70b..5cd5eb6 100755 --- a/dracut/autoinstaller/install.sh +++ b/dracut/autoinstaller/install.sh @@ -201,10 +201,10 @@ VAI_configure_autoinstall() { XBPS_ARCH="$(xbps-uhelper arch)" case $XBPS_ARCH in *-musl) - xbpsrepository="https://repo.voidlinux.eu/current/musl" + xbpsrepository="https://alpha.de.repo.voidlinux.org/current/musl" ;; *) - xbpsrepository="https://repo.voidlinux.eu/current" + xbpsrepository="https://alpha.de.repo.voidlinux.org/current" ;; esac diff --git a/installer.sh.in b/installer.sh.in index 5ea7b9f..11d40cc 100644 --- a/installer.sh.in +++ b/installer.sh.in @@ -807,7 +807,7 @@ set_bootloader() { test_network() { rm -f xtraeme.asc && \ - xbps-uhelper fetch http://repo.voidlinux.eu/live/xtraeme.asc >$LOG 2>&1 + xbps-uhelper fetch http://alpha.de.repo.voidlinux.org/live/xtraeme.asc >$LOG 2>&1 if [ $? -eq 0 ]; then DIALOG --msgbox "Network is working properly!" ${MSGBOXSIZE} NETWORK_DONE=1 diff --git a/lib.sh.in b/lib.sh.in index 98c3316..5246917 100644 --- a/lib.sh.in +++ b/lib.sh.in @@ -270,9 +270,9 @@ set_cachedir() { # These should all resolve even if they won't have the appropriate # repodata files for the selected architecture. -: "${XBPS_REPOSITORY:=--repository=http://repo.voidlinux.eu/current \ - --repository=http://repo.voidlinux.eu/current/musl \ - --repository=http://repo.voidlinux.eu/current/aarch64}" +: "${XBPS_REPOSITORY:=--repository=http://alpha.de.repo.voidlinux.org/current \ + --repository=http://alpha.de.repo.voidlinux.org/current/musl \ + --repository=http://alpha.de.repo.voidlinux.org/current/aarch64}"