Ver Fonte

minor changes

Daniel Gibbs há 10 anos atrás
pai
commit
3a2d4e1453
1 ficheiros alterados com 5 adições e 3 exclusões
  1. 5 3
      lgsm/functions/fix_glibc.sh

+ 5 - 3
lgsm/functions/fix_glibc.sh

@@ -25,7 +25,6 @@ do
 	fi	
 done
 
-
 glibc_version="$(ldd --version | sed -n '1s/.* //p')"
 if [ "$(printf '%s\n$glibc_required\n' $glibc_version | sort -V | head -n 1)" != "${glibc_required}" ]; then
 	if [ "${glibcfix}" == "yes" ]; then 
@@ -35,10 +34,13 @@ if [ "$(printf '%s\n$glibc_required\n' $glibc_version | sort -V | head -n 1)" !=
 		export LD_LIBRARY_PATH=:"${libdir}"
 	else
 		fn_print_warn_nl "Glibc fix: No Glibc fix available!"
+		echo -en "\n"
 		echo "	* glibc required: $glibc_required"
 		echo "	* glibc installed: $glibc_version"
-		fn_print_infomation "The game server is unlikly to work. A distro upgrade is required"
-	fi	
+		echo -en "\n"
+		fn_print_infomation "The game server will probably not work. A distro upgrade is required!"
+	fi
+	echo -en "\n"
 else
 	echo "GLIBC is OK no fix required"
 fi