-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
debootstrap bug #946783 means that the latest version on buster does not function correctly with both --unpack-tarball and --foreign. Pin an older version without this bug until it's fixed on stable.
- Loading branch information
Showing
3 changed files
with
15 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
14da318a90c66b9ef4be97b950bffd418033598c44f12f472d3501edec103f40 debootstrap-1.0.106.deb |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#!/bin/bash | ||
set -e -u | ||
|
||
VERSION="1.0.106" | ||
DEBI="20180811T145253Z" | ||
|
||
cd "$(dirname "$0")" | ||
curl -L -o "debootstrap-${VERSION}.deb" "http://snapshot.debian.org/archive/debian/${DEBI}/pool/main/d/debootstrap/debootstrap_${VERSION}_all.deb" | ||
sha256sum --check "debootstrap-${VERSION}.deb.sha256" | ||
sudo dpkg "$@" --install "debootstrap-${VERSION}.deb" | ||
echo "debootstrap hold" | sudo dpkg "$@" --set-selections | ||
rm "debootstrap-${VERSION}.deb" |