15 γραμμές
455 B
Bash
Εκτελέσιμο Αρχείο
15 γραμμές
455 B
Bash
Εκτελέσιμο Αρχείο
#!/bin/sh
|
|
set -e
|
|
[ -d cache ] || mkdir cache
|
|
SPAWN="systemd-nspawn -M gentoolooqsbuilder -D gentoo --bind=$(realpath ./out):/out --bind=$(realpath scripts):/scripts --bind=$(realpath cache):/var/cache/distfiles"
|
|
|
|
|
|
SETUPSCRIPT="/scripts/3-setup-gentoo.sh"
|
|
BUILDSCRIPT="/scripts/4-build-looqs.sh"
|
|
./scripts/1-create.sh
|
|
sudo ./scripts/2-create.sh `whoami`
|
|
sudo ${SPAWN} /${SETUPSCRIPT}
|
|
sudo ${SPAWN} su - builder -c /${BUILDSCRIPT}
|
|
./scripts/5-bundle.sh
|
|
|