summaryrefslogtreecommitdiff
path: root/build-dual.sh
diff options
context:
space:
mode:
authorTyler Dence <tyzoid.d@gmail.com>2018-05-02 06:43:45 -0400
committerTyler Dence <tyzoid.d@gmail.com>2018-05-02 13:50:25 -0400
commitac9c5c52532683dae78146ce5194b4243c2698f3 (patch)
tree4c1f9d22d0df84677f2bd238d15d2a0b67d5d12c /build-dual.sh
parenta4ea3f8e3a6ea67df4f423ecaa1050577e285f6d (diff)
downloadreleng-ac9c5c52532683dae78146ce5194b4243c2698f3.tar.xz
Switch the iso build scripts to use releng instead of archlinuxewe
Diffstat (limited to 'build-dual.sh')
-rwxr-xr-xbuild-dual.sh61
1 files changed, 19 insertions, 42 deletions
diff --git a/build-dual.sh b/build-dual.sh
index 87c76af..9f14a5f 100755
--- a/build-dual.sh
+++ b/build-dual.sh
@@ -13,57 +13,34 @@ cat << "__ENDOFPROVISION.SH__" > provision.sh
#!/bin/bash
set -e
ln -svf /usr/share/zoneinfo/America/Detroit /etc/localtime
-tmpFile="$(mktemp)"
-curl -o "${tmpFile}" "https://arch.eckner.net/archlinuxewe/masterkeys.gpg"
-pacman-key --add "${tmpFile}"
-rm -f "${tmpFile}"
-pacman-key --lsign-key 5FDCA472AB93292BC678FD59255A76DB9A12601A
-pacman-key --lsign-key F8028D351891AE15970A2B3B3CFB0AD8F60030F8
-if ! grep -q "^Server = https://arch\.eckner\.net" /etc/pacman.d/mirrorlist
-then
- ml="$(
- curl "https://arch.eckner.net/archlinuxewe/os/any/" 2> /dev/null | \
- tr "<>" "\n\n" | \
- grep "^pacman-mirrorlist-.*\.pkg\.tar\.xz\$" | \
- tail -n1
- )"
- curl "https://arch.eckner.net/archlinuxewe/os/any/${ml}" 2> /dev/null | \
- tar -OxJ etc/pacman.d/mirrorlist > \
- /etc/pacman.d/mirrorlist
-fi
-if ! grep -q "^\[archlinuxewe\]\$" /etc/pacman.conf
-then
- tmpFile="$(mktemp)"
- cat /etc/pacman.conf | \
- (
- while read s
- do
- if [[ "$s" = "# The testing repositories"* ]]
- then
- echo '[archlinuxewe]'
- echo 'SigLevel = Required'
- echo 'Include = /etc/pacman.d/mirrorlist'
- echo ''
- fi
- echo "${s}"
- done
- ) > "${tmpFile}"
- cat "${tmpFile}" > /etc/pacman.conf
- rm -f "${tmpFile}"
-fi
-sudo pacman --noconfirm -Sy archlinux-keyring archlinux32-keyring
-sudo pacman --noconfirm -Su archiso-dual
+pacman --noconfirm -Sy archlinux-keyring
+
+tee -a /etc/pacman.conf << "_PACMANCONF_"
+[releng]
+Include = /etc/pacman.d/mirrorlist32
+_PACMANCONF_
+
+cat << "__ENDOFARCH32MIRRORLIST__" > /etc/pacman.d/mirrorlist32
+Server = https://32.arlm.tyzoid.com/$arch/$repo
+Server = http://arch32.mirrors.simplysam.us/$arch/$repo
+Server = https://mirror.archlinux32.org/$arch/$repo
+__ENDOFARCH32MIRRORLIST__
+
+pacman --noconfirm -Sy archlinux32-keyring-transition
+pacman --noconfirm -R archlinux32-keyring-transition
+pacman --noconfirm -S archlinux32-keyring
+pacman --noconfirm -Su archiso-dual
cat << "__ENDOFARCH32MIRRORLIST__" > /etc/pacman.d/mirrorlist32
Server = https://multiarch.arch32.tyzoid.com/$repo/os/$arch
__ENDOFARCH32MIRRORLIST__
-cat << "__MIRRORLIST__" | sudo tee /etc/pacman.d/mirrorlist
+cat << "__MIRRORLIST__" | tee /etc/pacman.d/mirrorlist
Server = https://multiarch.arch32.tyzoid.com/$repo/os/$arch
__MIRRORLIST__
-cat << "__ENDOFISOBUILDSCRIPT__" | sudo tee /root/buildiso.sh >/dev/null
+cat << "__ENDOFISOBUILDSCRIPT__" | tee /root/buildiso.sh >/dev/null
#!/bin/bash
/usr/share/archiso/configs/releng/build.sh -v -V"$(date -d"$(date -d "+2day" +%Y-%m-01T12:00:00Z)" +%Y.%m.%d)" -L"ARCH_$(date -d"$(date -d "+2day" +%Y-%m-01T12:00:00Z)" +%Y%m)"
__ENDOFISOBUILDSCRIPT__