From a6a6aa78b0ad8eb376eb60d7526c0183ac09e7e8 Mon Sep 17 00:00:00 2001 From: Michael T Date: Thu, 11 Aug 2016 15:17:55 -0700 Subject: [PATCH] Fixing the script freezing prior to mysql secure install (#2434) --- snipeit.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/snipeit.sh b/snipeit.sh index 58976034fb..64879816ea 100755 --- a/snipeit.sh +++ b/snipeit.sh @@ -161,7 +161,7 @@ case $distro in # Get files and extract to web dir echo "" echo "## Downloading snipeit and extract to web directory." - wget -P $tmp/ https://github.com/snipe/snipe-it/archive/$file >> /var/log/snipeit-install.log 2>&1 + wget -P $tmp/ https://github.com/snipe/snipe-it/archive/$file unzip -qo $tmp/$file -d $tmp/ cp -R $tmp/$fileName $webdir/$name @@ -170,8 +170,8 @@ case $distro in #Enable mcrypt and rewrite echo "## Enabling mcrypt and rewrite" - sudo php5enmod mcrypt >> /var/log/snipeit-install.log 2>&1 - sudo a2enmod rewrite >> /var/log/snipeit-install.log 2>&1 + sudo php5enmod mcrypt + sudo a2enmod rewrite #Create a new virtual host for Apache. echo "## Create Virtual host for apache." @@ -204,7 +204,7 @@ case $distro in echo "## Setting up hosts file." echo >> $hosts "127.0.0.1 $hostname $fqdn" - a2ensite $name.conf >> /var/log/snipeit-install.log 2>&1 + a2ensite $name.conf #Modify the Snipe-It files necessary for a production environment. echo "## Modify the Snipe-It files necessary for a production environment."