Explorar o código

Update MD5 Check

Daniel Gibbs %!s(int64=10) %!d(string=hai) anos
pai
achega
05dce64eb7
Modificáronse 2 ficheiros con 11 adicións e 10 borrados
  1. 10 9
      functions/core_dl.sh
  2. 1 1
      functions/install_dl_ut99.sh

+ 10 - 9
functions/core_dl.sh

@@ -14,21 +14,22 @@ lgsm_version="050216"
 fn_dl_md5(){
 # Runs MD5 Check if available
 if [ -n "${md5}" ]; then
-	echo -ne "verifying ${filename} with MD5...\c"
-	local md5check=$(md5sum "${filedir}/${filename}"|awk '{print $1;}')
-	if [ "${md5check}" != "${dl_md5}" ]; then
+	echo -ne "verifying ${filename} with MD5..."
+	sleep 1
+	local md5sumcmd=$(md5sum "${filedir}/${filename}"|awk '{print $1;}')
+	if [ "${md5sumcmd}" != "${md5}" ]; then
 		fn_printfaileol
-		echo "${filename} MD5 checksum: ${md5check}"
-		echo "expected MD5 checksum: ${dl_md5}"
+		echo "${filename} returned MD5 checksum: ${md5sumcmd}"
+		echo "expected MD5 checksum: ${md5}"
 		fn_scriptlog "failed to verify ${filename} with MD5"
-		fn_scriptlog "${filename} MD5 checksum: ${md5check}"
-		fn_scriptlog "expected MD5 checksum: ${dl_md5}"
+		fn_scriptlog "${filename} returned MD5 checksum: ${md5sumcmd}"
+		fn_scriptlog "expected MD5 checksum: ${md5}"
 		exit 1	
 	else
 		fn_printokeol
 		fn_scriptlog "verifyed ${filename} with MD5"
-		fn_scriptlog "${filename} MD5 checksum: ${md5check}"
-		fn_scriptlog "expected MD5 checksum: ${dl_md5}"		
+		fn_scriptlog "${filename} returned MD5 checksum: ${md5sumcmd}"
+		fn_scriptlog "expected MD5 checksum: ${md5}"		
 	fi
 fi	
 }

+ 1 - 1
functions/install_dl_ut99.sh

@@ -8,5 +8,5 @@ echo ""
 echo "Downloading Server Files"
 echo "================================="
 sleep 1
-fn_fetch_file "http://gameservermanagers.com/files/ut-server-451-complete.tar.bz2" "${lgsmdir}/tmp" "ut-server-451-complete.tar.bz2" "norun" "noforce" "42a8c9806e4fce10a56830caca83ce63"
+fn_fetch_file "http://gameservermanagers.com/files/ut-server-451-complete.tar.bz2" "${lgsmdir}/tmp" "ut-server-451-complete.tar.bz2" "norun" "noforce" "e623fdff5ed600a9bfccab852e18d34d"
 fn_dl_extract "${lgsmdir}/tmp" "ut-server-451-complete.tar.bz2" "${filesdir}"