2023-01-16 11:13:21 +00:00
|
|
|
#!/bin/sh
|
|
|
|
set -eu
|
|
|
|
export LC_ALL=C.UTF-8
|
|
|
|
trap "rm -f /tmp/debian-chroot.tar" EXIT INT TERM
|
|
|
|
{{ CMD }} --mode={{ MODE }} --variant=custom \
|
|
|
|
--include '?narrow(?archive(^{{ DIST }}$),?essential)' \
|
|
|
|
--include apt \
|
|
|
|
{{ DIST }} /tmp/debian-chroot.tar {{ MIRROR }}
|
2024-06-03 05:59:51 +00:00
|
|
|
{ tar -tf /tmp/debian-chroot.tar; echo ./var/lib/apt/extended_states; } | sort | diff -u tar1.txt -
|