2022-05-25 14:02:09 +00:00
|
|
|
#!/bin/sh
|
|
|
|
set -eu
|
|
|
|
export LC_ALL=C.UTF-8
|
|
|
|
[ "$(whoami)" = "root" ]
|
|
|
|
|
|
|
|
if grep --null-data --quiet --no-messages '^container=lxc$' /proc/1/environ; then
|
2024-10-11 16:29:25 +00:00
|
|
|
# see https://stackoverflow.com/questions/65748254/
|
|
|
|
echo "cannot run under lxc -- Skipping test..." >&2
|
|
|
|
exit 0
|
2022-05-25 14:02:09 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
capsh --drop=cap_sys_admin -- -c 'exec "$@"' exec \
|
2024-10-11 16:29:25 +00:00
|
|
|
{{ CMD }} --mode=root --variant=apt \
|
|
|
|
--customize-hook='chroot "$1" sh -c "test ! -e /proc/self/fd"' \
|
|
|
|
{{ DIST }} /tmp/debian-chroot.tar {{ MIRROR }}
|
2022-05-25 14:02:09 +00:00
|
|
|
tar -tf /tmp/debian-chroot.tar | sort | diff -u tar1.txt -
|
|
|
|
rm /tmp/debian-chroot.tar
|