Fixed if statement

This commit is contained in:
Kyle Warwick-Mathieu
2015-04-09 21:31:37 -04:00
parent 78c0c0a436
commit 61b364d34e

View File

@@ -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"