From 61b364d34efb34fa66fd8be92f645542a0874cae Mon Sep 17 00:00:00 2001 From: Kyle Warwick-Mathieu Date: Thu, 9 Apr 2015 21:31:37 -0400 Subject: [PATCH] Fixed if statement --- server-setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server-setup.sh b/server-setup.sh index 17f7b5e..09fd4bf 100644 --- a/server-setup.sh +++ b/server-setup.sh @@ -52,7 +52,7 @@ echo "Okay! Lets hope nothing broke during this process..." sleep 5s echo "Now lets enable some modules so we can make all of this work..." a2enmod $mod1 $mod2 $mod3 -if [ $? != "0"] then: +if [ $? != "0" ] ; then a2enmod $mod4 fi echo "Great! Everything appears to be set up as far as Apache"