forked from josch/mmdebstrap
Johannes Schauer Marin Rodrigues
4c3fddcd54
- multiple individual shell scripts instead of one 3.5k line monster - tests driven by Python script allowing: * declarative test description in coverage.txt * collecting errors instead of aborting on first error * skipping tests * running specific tests
11 lines
491 B
Bash
11 lines
491 B
Bash
#!/bin/sh
|
|
#
|
|
# make sure that using codenames works https://bugs.debian.org/1003191
|
|
|
|
set -eu
|
|
export LC_ALL=C.UTF-8
|
|
trap "rm -f Release; rm -rf /tmp/debian-chroot" EXIT INT TERM
|
|
/usr/lib/apt/apt-helper download-file "{{ MIRROR }}/dists/{{ DIST }}/Release" Release
|
|
codename=$(awk '/^Codename: / { print $2; }' Release)
|
|
{{ CMD }} --mode={{ MODE }} --variant=apt $codename /tmp/debian-chroot {{ MIRROR }}
|
|
echo "deb {{ MIRROR }} $codename main" | diff -u - /tmp/debian-chroot/etc/apt/sources.list
|