Update install.sh

pull/221/head
midoks 3 years ago
parent 1239a2807f
commit 9c43170d4b
  1. 16
      plugins/mysql/versions/8.0/install.sh

@ -81,14 +81,14 @@ Install_mysql()
cpuCore=`cat /proc/cpuinfo | grep "processor" | wc -l` cpuCore=`cat /proc/cpuinfo | grep "processor" | wc -l`
fi fi
MEM_INFO=$(free -m|grep Mem|awk '{printf("%.f",($2)/1024)}') # MEM_INFO=$(free -m|grep Mem|awk '{printf("%.f",($2)/1024)}')
if [ "${cpuCore}" != "1" ] && [ "${MEM_INFO}" != "0" ];then # if [ "${cpuCore}" != "1" ] && [ "${MEM_INFO}" != "0" ];then
if [ "${cpuCore}" -gt "${MEM_INFO}" ];then # if [ "${cpuCore}" -gt "${MEM_INFO}" ];then
cpuCore="${MEM_INFO}" # cpuCore="${MEM_INFO}"
fi # fi
else # else
cpuCore="1" # cpuCore="1"
fi # fi
if [ "$cpuCore" -gt "1" ];then if [ "$cpuCore" -gt "1" ];then
cpuCore=`echo "$cpuCore" | awk '{printf("%.f",($1)*0.8)}'` cpuCore=`echo "$cpuCore" | awk '{printf("%.f",($1)*0.8)}'`

Loading…
Cancel
Save