summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKristian Klausen <kristian@klausen.dk>2022-05-22 17:32:25 +0200
committerKristian Klausen <kristian@klausen.dk>2022-05-22 17:32:48 +0200
commit34842c6f98903096ed4becdf9fe81df9d1fd349b (patch)
tree8a01f4e880670ef2d6c571a67560e58ee76e84a5
parent1aa17019ae058fd6c4c7826775a5b5276037df76 (diff)
parent79eb07e33216e042fc4a8e7a3a38243b6fa0f461 (diff)
Merge branch 'geo-mirror' into 'master'
Use geo.mirror.pkgbuild.com as the default mirror See merge request archlinux/arch-boxes!175
-rw-r--r--README.md2
-rwxr-xr-xbuild-host.sh2
-rwxr-xr-xbuild-inside-vm.sh2
3 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index dc959e4..e7ba0f3 100644
--- a/README.md
+++ b/README.md
@@ -11,7 +11,7 @@ The images is built daily and released biweekly (via [GitLab CI schedule](https:
Vagrant images for the VirtualBox and Libvirt provider are released to [Vagrant Cloud](https://app.vagrantup.com/archlinux/boxes/archlinux).
### QCOW2 images
-At the time of writing we offer two different QCOW2 images. The images are synced to the mirrors under the `images` directory, ex: https://mirror.pkgbuild.com/images/.
+At the time of writing we offer two different QCOW2 images. The images are synced to the mirrors under the `images` directory, ex: https://geo.mirror.pkgbuild.com/images/.
#### Basic image
The basic image is meant for local usage and comes preconfigured with the user `arch` (pw: `arch`) and sshd running.
diff --git a/build-host.sh b/build-host.sh
index 8bce116..8d0d648 100755
--- a/build-host.sh
+++ b/build-host.sh
@@ -4,7 +4,7 @@
# nounset: "Treat unset variables and parameters [...] as an error when performing parameter expansion."
# errexit: "Exit immediately if [...] command exits with a non-zero status."
set -o nounset -o errexit
-readonly MIRROR="https://mirror.pkgbuild.com"
+readonly MIRROR="https://geo.mirror.pkgbuild.com"
function init() {
readonly ORIG_PWD="${PWD}"
diff --git a/build-inside-vm.sh b/build-inside-vm.sh
index 25d4d77..b43c1b3 100755
--- a/build-inside-vm.sh
+++ b/build-inside-vm.sh
@@ -8,7 +8,7 @@ shopt -s extglob
readonly DEFAULT_DISK_SIZE="2G"
readonly IMAGE="image.img"
# shellcheck disable=SC2016
-readonly MIRROR='https://mirror.pkgbuild.com/$repo/os/$arch'
+readonly MIRROR='https://geo.mirror.pkgbuild.com/$repo/os/$arch'
function init() {
readonly ORIG_PWD="${PWD}"