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:
parent
889118aeb6
commit
70f05e9d52
|
@ -86,6 +86,10 @@ if [ ! -f /usr/bin/add-apt-repository ]; then
|
||||||
apt_install software-properties-common
|
apt_install software-properties-common
|
||||||
fi
|
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.
|
# Install the certbot PPA.
|
||||||
hide_output add-apt-repository -y ppa:certbot/certbot
|
hide_output add-apt-repository -y ppa:certbot/certbot
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue