From f093377805680301303a5ca1a9e83e758478d5b8 Mon Sep 17 00:00:00 2001 From: Dan Albert Date: Fri, 12 Jul 2019 11:50:40 -0600 Subject: [PATCH] apt-get update before installing certbot (#5054) * apt-get update before installing certbot --- 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