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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -1,5 +1,10 @@
#!/bin/bash #!/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 # Check if we were effectively run as root
[ $EUID = 0 ] || { echo "This script needs to be run as root!"; exit 1; } [ $EUID = 0 ] || { echo "This script needs to be run as root!"; exit 1; }