summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--debian/changelog9
-rw-r--r--scripts/gutsy2
-rw-r--r--scripts/sid2
3 files changed, 11 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog
index 5189d3e..51aad02 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,12 @@
+debootstrap (1.0.59) UNRELEASED; urgency=medium
+
+ * Install ca-certificates as well as apt-transport-https for HTTPS
+ installations. This makes it possible to copy certificates that were
+ built into the installer to /usr/local/share/ca-certificates/ and thus
+ have them continue to be trusted after installation.
+
+ -- Colin Watson <cjwatson@debian.org> Wed, 12 Feb 2014 17:25:37 +0000
+
debootstrap (1.0.58) unstable; urgency=medium
* Policy version 3.9.5: no changes required.
diff --git a/scripts/gutsy b/scripts/gutsy
index 69513f4..bb39bf5 100644
--- a/scripts/gutsy
+++ b/scripts/gutsy
@@ -46,7 +46,7 @@ work_out_debs () {
case $MIRRORS in
https://*)
- base="$base apt-transport-https"
+ base="$base apt-transport-https ca-certificates"
;;
esac
}
diff --git a/scripts/sid b/scripts/sid
index 241f867..bf3404f 100644
--- a/scripts/sid
+++ b/scripts/sid
@@ -35,7 +35,7 @@ work_out_debs () {
case $MIRRORS in
https://*)
- base="$base apt-transport-https"
+ base="$base apt-transport-https ca-certificates"
;;
esac
}