Merge "Fix discoverd bug when dmidecode reports GB"

This commit is contained in:
Jenkins 2016-01-08 01:22:54 +00:00 committed by Gerrit Code Review
commit 14560600a6

View File

@ -44,7 +44,7 @@ CPU_ARCH=$(lscpu | grep Architecture | awk '{ print $2 }')
update ".cpu_arch = \"$CPU_ARCH\""
RAM=0
for i in $(dmidecode --type memory | grep Size | awk '{ print $2; }' | grep -E '[0-9]+');
for i in $(dmidecode --type memory | awk '($0~/Size/ && $2~/[0-9]/) {($3~/GB/) ? size=$2*1024 : size=$2; {print size;}}')
do
RAM=$(( RAM + $i ));
done