2023-01-16 14:13:39 +00:00
|
|
|
#!/bin/sh
|
|
|
|
set -eu
|
|
|
|
export LC_ALL=C.UTF-8
|
|
|
|
trap "rm -f /tmp/debian-chroot.tar" EXIT INT TERM
|
|
|
|
printf '' | {{ CMD }} --mode={{ MODE }} --variant=apt \
|
2024-06-11 10:41:15 +00:00
|
|
|
--setup-hook='test -e "$1"/etc/apt/sources.list || echo "deb {{ MIRROR }} {{ DIST }} main" > "$1"/etc/apt/sources.list' \
|
2023-01-16 14:13:39 +00:00
|
|
|
{{ DIST }} /tmp/debian-chroot.tar -
|
|
|
|
tar -tf /tmp/debian-chroot.tar | sort | diff -u tar1.txt -
|