mirror of
https://codeberg.org/kiss-community/kiss
synced 2024-11-04 22:15:36 -07:00
36 lines
826 B
Bash
Executable File
36 lines
826 B
Bash
Executable File
#!/bin/sh -e
|
|
# Create/destroy temporary chroots
|
|
|
|
log() {
|
|
printf '\033[31;1m->\033[m %s.\n' "$@"
|
|
}
|
|
|
|
cd "${cac_dir:=$KISS_ROOT${XDG_CACHE_HOME:-$HOME/.cache}/kiss}"
|
|
|
|
[ -f kiss-chroot.tar.xz ] || {
|
|
log "Downloading chroot tarball"
|
|
|
|
url=https://github.com/kisslinux/repo/releases/download/1.10.0/
|
|
curl -OL "$url/kiss-chroot.tar.xz"
|
|
curl -OL "$url/kiss-chroot.tar.xz.sha256"
|
|
|
|
log "Verifying checksums"
|
|
|
|
sha256sum -c < kiss-chroot.tar.xz.sha256 || {
|
|
rm -f kiss-chroot.tar.xz
|
|
log "Checksum verification failed."
|
|
log "Re-run 'kiss-chbuild' to try again."
|
|
}
|
|
}
|
|
|
|
[ -d kiss-chroot ] || {
|
|
log "Extracting chroot"
|
|
tar xf kiss-chroot.tar.xz
|
|
}
|
|
|
|
log "Creating temporary chroot"
|
|
cp -a kiss-chroot "chroot-$$"
|
|
|
|
log "Entering chroot"
|
|
su -c "kiss-chroot chroot-$$; rm -rf chroot-$$"
|