From 34d968a2cd84c58dae807a4052bd7f3f722aeab2 Mon Sep 17 00:00:00 2001 From: downtownallday Date: Mon, 2 Nov 2020 12:57:57 -0500 Subject: [PATCH] Prep for ubuntu 20. This file is shared with cloud-in-a-box, which will support ubuntu 20 before MiaB-LDAP. --- setup/system.sh | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/setup/system.sh b/setup/system.sh index 3d522dae..4daa73c3 100755 --- a/setup/system.sh +++ b/setup/system.sh @@ -91,7 +91,21 @@ fi hide_output add-apt-repository -y universe # Install the certbot PPA. -hide_output add-apt-repository -y ppa:certbot/certbot +if [ $(. /etc/os-release; echo $VERSION_ID | awk -F. '{print $1}') -le 18 ] +then + hide_output add-apt-repository -y ppa:certbot/certbot +else + hide_output snap install core + hide_output snap refresh core + if ! snap list certbot 1>/dev/null 2>&1; then + # a ppa was required on ubuntu 18, but snaps are used in ubuntu 19+ + # remove the ppa and certbot per eff's instructions + hide_output add-apt-repository -r -y ppa:certbot/certbot + hide_output apt-get remove -y certbot + fi + hide_output snap install --classic certbot + ln -sf /snap/bin/certbot /usr/bin/certbot +fi # ### Update Packages