8 lines
358 B
Bash
8 lines
358 B
Bash
#!/bin/sh
|
|
set -eu
|
|
export LC_ALL=C.UTF-8
|
|
trap "rm -f /tmp/debian-chroot.tar" EXIT INT TERM
|
|
{{ CMD }} --mode={{ MODE }} --variant=essential \
|
|
--include '?or(?exact-name(dummy-does-not-exist),?exact-name(apt))' \
|
|
{{ DIST }} /tmp/debian-chroot.tar {{ MIRROR }}
|
|
tar -tf /tmp/debian-chroot.tar | sort | grep -v ./var/lib/apt/extended_states | diff -u tar1.txt -
|