Correct physical memory comparison

This commit is contained in:
Murl080 2023-10-09 15:05:07 +02:00 committed by GitHub
parent 9da06cbd2a
commit 34e642efd2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2028,7 +2028,7 @@ sub system_recommendations {
"Consider increasing number of CPU for your database server"; "Consider increasing number of CPU for your database server";
} }
if ( $physical_memory < 1600 ) { if ( $physical_memory >= 1.5 * 1024 ) {
goodprint "There is at least 1 Gb of RAM dedicated to Linux server."; goodprint "There is at least 1 Gb of RAM dedicated to Linux server.";
} }
else { else {