From 309caa1d3926d576c35527910545bd4eebfe4b84 Mon Sep 17 00:00:00 2001 From: Dustin B Date: Tue, 31 Jul 2018 15:53:35 -0400 Subject: [PATCH] Add multiverse repository Sloppy add of multiverse repository for Ubuntu Server 18.04.1-live but this will ensure any distro going forward should have the required dependencies available. --- xo_install.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/xo_install.sh b/xo_install.sh index 1b56ba0..7919a6e 100644 --- a/xo_install.sh +++ b/xo_install.sh @@ -1,5 +1,10 @@ #!/bin/bash +#Repository add - confirm required repoistor(ies) are enabled and active, update and upgrade no matter what +add-apt-repository multiverse +sudo update +sudo upgrade + # Check if we were effectively run as root [ $EUID = 0 ] || { echo "This script needs to be run as root!"; exit 1; }