From afc80b1865b23431e83b32847c3fdd39fa02e272 Mon Sep 17 00:00:00 2001 From: Kyle Warwick-Mathieu Date: Thu, 26 Mar 2015 00:56:04 -0400 Subject: [PATCH] Update server-setup.sh --- server-setup.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/server-setup.sh b/server-setup.sh index 3a21a20..f82768e 100644 --- a/server-setup.sh +++ b/server-setup.sh @@ -22,14 +22,14 @@ sleep 5s echo "Okay! Gotta love when a plan comes together!" echo "Let me install a few upgrade and packages on your system for you...." echo "If you already have a package installed, I'll simply skip over it or upgrade it" -apt-get update -y >/dev/null +apt-get update -y --fix-missing echo "Updated repo lists...." echo "Installing package upgrades... go kill some time as this may take a few minutes..." -apt-get upgrade -y >/dev/null +apt-get upgrade -y clear echo "Upgrades complete!" echo "Now installing required packages..." -apt-get install apache2 python2.7 python-twisted dnsmasq -y >/dev/null +apt-get install apache2 python2.7 python-twisted dnsmasq -y echo "Installing Apache, Python 2.7, Python Twisted and DNSMasq....." clear echo "Now that that's out of the way, let's do some apache stuff"