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

Merges #1650.
This commit is contained in:
Brendan Hide 2019-10-03 20:10:14 +02:00 committed by Joshua Tauberer
parent 889118aeb6
commit 70f05e9d52
1 changed files with 4 additions and 0 deletions

View File

@ -86,6 +86,10 @@ if [ ! -f /usr/bin/add-apt-repository ]; then
apt_install software-properties-common
fi
# Ensure the universe repository is enabled since some of our packages
# come from there and minimal Ubuntu installs may have it turned off.
hide_output add-apt-repository -y universe
# Install the certbot PPA.
hide_output add-apt-repository -y ppa:certbot/certbot