From df7dfb40d8723dc4b80eed7b52e1e1f0dffd77bd Mon Sep 17 00:00:00 2001 From: Brendan Hide Date: Thu, 3 Oct 2019 20:10:14 +0200 Subject: [PATCH] Ensure the universe repository is enabled A minimal Ubuntu server installation might not have universe enabled by default. By adding it, we ensure we can install packages only available in universe, such as python3-pip --- setup/system.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/setup/system.sh b/setup/system.sh index ccc60231..b6ac6c4d 100755 --- a/setup/system.sh +++ b/setup/system.sh @@ -89,6 +89,9 @@ fi # Install the certbot PPA. hide_output add-apt-repository -y ppa:certbot/certbot +# Ensure the universe repository is enabled +hide_output add-apt-repository -y universe + # ### Update Packages # Update system packages to make sure we have the latest upstream versions