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.
This commit is contained in:
Dustin B
2018-07-31 15:53:35 -04:00
committed by GitHub
parent 9b8c557eff
commit 309caa1d39

View File

@@ -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; }