From 196a7216a327dc4eb5de37faf80f2e89e13242c7 Mon Sep 17 00:00:00 2001 From: unclejack Date: Tue, 3 Feb 2015 17:55:14 +0200 Subject: [PATCH] project/install.sh: install ca-certificates This ensures that ca-certificates are installed and that they get updated in case they were already installed. Signed-off-by: Cristian Staretu --- project/install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/project/install.sh b/project/install.sh index 8678562460..60819d86df 100755 --- a/project/install.sh +++ b/project/install.sh @@ -151,11 +151,11 @@ case "$lsb_dist" in if [ ! -e /usr/lib/apt/methods/https ]; then apt_get_update - ( set -x; $sh_c 'sleep 3; apt-get install -y -q apt-transport-https' ) + ( set -x; $sh_c 'sleep 3; apt-get install -y -q apt-transport-https ca-certificates' ) fi if [ -z "$curl" ]; then apt_get_update - ( set -x; $sh_c 'sleep 3; apt-get install -y -q curl' ) + ( set -x; $sh_c 'sleep 3; apt-get install -y -q curl ca-certificates' ) curl='curl -sSL' fi (