29 lines
687 B
Bash
29 lines
687 B
Bash
|
BASEDIR=/var/lib/machines
|
||
|
ID=$(uuidgen | tr -d -)
|
||
|
NAME=debian-live-cd-$ID
|
||
|
DIR=$BASEDIR/$NAME
|
||
|
|
||
|
echo "Generating container under $DIR"
|
||
|
zfs snapshot ztstor/ROOT/archie/var/lib/machines/buster-template@${ID}
|
||
|
zfs clone \
|
||
|
-o mountpoint=$DIR \
|
||
|
ztstor/ROOT/archie/var/lib/machines/buster-template@${ID} \
|
||
|
ztstor/ROOT/archie/var/lib/machines/$NAME
|
||
|
|
||
|
mkdir $DIR/var/live-build/
|
||
|
rsync -av . $DIR/var/live-build/
|
||
|
|
||
|
# Execute stuff inside container
|
||
|
systemd-nspawn -q --pipe -D $DIR /bin/bash << EOF
|
||
|
apt update
|
||
|
apt install -y live-build binutils
|
||
|
cd /var/live-build/
|
||
|
lb clean --purge
|
||
|
lb config
|
||
|
lb build
|
||
|
EOF
|
||
|
|
||
|
|
||
|
echo "Removing container..."
|
||
|
zfs destroy ztstor/ROOT/archie/var/lib/machines/$NAME
|