From 661c4bdde9708fe7d0885832a2f3784cc1b422d5 Mon Sep 17 00:00:00 2001 From: Craig Wilhite Date: Mon, 5 Mar 2018 10:51:08 -0800 Subject: [PATCH 1/2] Update install.sh Remove pulling in bionic-proposed. 18.04 is now on to the 4.15 kernels, so there's no need anymore. --- ubuntu/18.04/install.sh | 8 -------- 1 file changed, 8 deletions(-) diff --git a/ubuntu/18.04/install.sh b/ubuntu/18.04/install.sh index 8f6ccd5..849df4c 100644 --- a/ubuntu/18.04/install.sh +++ b/ubuntu/18.04/install.sh @@ -16,14 +16,6 @@ if [ ! $(id -u) ] ; then exit 1 fi -# Check if we have the bionic-proposed sources list - -cat /etc/apt/sources.list | grep bionic-proposed > /dev/null -if [ "$?" == "1" ]; then -bash -c 'echo "deb http://archive.ubuntu.com/ubuntu/ bionic-proposed restricted main multiverse universe" >> /etc/apt/sources.list < Date: Mon, 5 Mar 2018 11:02:40 -0800 Subject: [PATCH 2/2] Update install.sh Change dist-upgrade to just upgrade --- ubuntu/18.04/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ubuntu/18.04/install.sh b/ubuntu/18.04/install.sh index 849df4c..4056d95 100644 --- a/ubuntu/18.04/install.sh +++ b/ubuntu/18.04/install.sh @@ -16,7 +16,7 @@ if [ ! $(id -u) ] ; then exit 1 fi -apt update && apt dist-upgrade -y +apt update && apt upgrade -y if [ -f /var/run/reboot-required ]; then echo "A reboot is required in order to proceed with the install." >&2