mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2024-12-22 07:17:05 +00:00
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
|
||||
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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user