26 lines
787 B
Bash
Executable File
26 lines
787 B
Bash
Executable File
#!/bin/bash
|
|
|
|
die() {
|
|
echo $* >&2
|
|
exit 1
|
|
}
|
|
|
|
# Get latest stage3 tag
|
|
STAGE3_TAG=$(curl -s \
|
|
http://distfiles.gentoo.org/releases/amd64/autobuilds/latest-stage3-amd64.txt \
|
|
| grep -v "^#" | cut -d ' ' -f 1)
|
|
|
|
# Download latest stable stage3 build
|
|
wget -O /var/lib/catalyst/store/builds/stage3-amd64-latest.tar.xz \
|
|
http://distfiles.gentoo.org/releases/amd64/autobuilds/${STAGE3_TAG}
|
|
|
|
# Download latest portage snapshot
|
|
wget -O /var/lib/catalyst/store/snapshots/portage-latest.tar.bz2 \
|
|
https://gentoo.osuosl.org/releases/snapshots/current/portage-latest.tar.bz2
|
|
|
|
# Update stage3 snapshot
|
|
catalyst -c /var/lib/catalyst/catalyst.conf -f /var/lib/catalyst/stage3.spec
|
|
|
|
# Update custom packages
|
|
catalyst -c /var/lib/catalyst/catalyst.conf -f /var/lib/catalyst/build.spec
|