projects
/
mirror
/
dsa-puppet.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2e7ea5b
)
Try to support debootstrapping from https sources on debian.org infra
author
Peter Palfrader
<peter@palfrader.org>
Wed, 23 Jan 2019 12:47:42 +0000
(13:47 +0100)
committer
Peter Palfrader
<peter@palfrader.org>
Wed, 23 Jan 2019 12:47:42 +0000
(13:47 +0100)
modules/schroot/files/setup-dchroot
patch
|
blob
|
history
diff --git
a/modules/schroot/files/setup-dchroot
b/modules/schroot/files/setup-dchroot
index
1c90409
..
7f372fe
100755
(executable)
--- a/
modules/schroot/files/setup-dchroot
+++ b/
modules/schroot/files/setup-dchroot
@@
-353,8
+353,17
@@
case "$suite" in
;;
esac
+bindir=$(mktemp -d)
+cleanup+=("rm -r $bindir")
+cat > "$bindir/wget" << 'EOF'
+#!/bin/sh
+exec /usr/bin/wget --ca-directory=/etc/ssl/ca-global "$@"
+EOF
+chmod +x "$bindir/wget"
+
set -x
-debootstrap \
+PATH="$bindir:$PATH" \
+ debootstrap \
--keyring "$keyring" \
--include="$include" \
--variant=buildd \