From 855bd7d3b8bb7bb85d49e5be7859dba5cbfadf79 Mon Sep 17 00:00:00 2001 From: "mergify[bot]" <37929162+mergify[bot]@users.noreply.github.com> Date: Fri, 12 Jul 2019 11:54:56 -0600 Subject: [PATCH] apt-get update before installing certbot (#5054) (#5056) * apt-get update before installing certbot (cherry picked from commit f093377805680301303a5ca1a9e83e758478d5b8) --- net/scripts/install-certbot.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/net/scripts/install-certbot.sh b/net/scripts/install-certbot.sh index 9fc7cf7036..81f89d82ff 100755 --- a/net/scripts/install-certbot.sh +++ b/net/scripts/install-certbot.sh @@ -4,6 +4,7 @@ set -ex [[ $(uname) = Linux ]] || exit 1 [[ $USER = root ]] || exit 1 +apt-get update add-apt-repository --yes ppa:certbot/certbot apt-get --assume-yes install certbot