From 6077df6e04cc144c21e392247751545c63330f67 Mon Sep 17 00:00:00 2001 From: Aurelien Jarno Date: Tue, 13 Feb 2018 21:30:52 +0100 Subject: [PATCH] Install ca-certificates in the buildd chroots This is need in addition of apt-transport-https. Signed-off-by: Aurelien Jarno --- modules/schroot/files/setup-dchroot | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/schroot/files/setup-dchroot b/modules/schroot/files/setup-dchroot index 99f0919ac..1040212ab 100755 --- a/modules/schroot/files/setup-dchroot +++ b/modules/schroot/files/setup-dchroot @@ -386,10 +386,10 @@ chroot "$rootdir" apt-get install -y --no-install-recommends build-essential if [ -n "$buildd" ] ; then case "$suite" in wheezy|jessie|stretch) - chroot "$rootdir" apt-get install -y --no-install-recommends apt-transport-https + chroot "$rootdir" apt-get install -y --no-install-recommends apt-transport-https ca-certificates ;; *) - # Nothing to do, https support is part of the apt package + chroot "$rootdir" apt-get install -y --no-install-recommends ca-certificates ;; esac fi -- 2.20.1