mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2024-11-22 02:17:26 +00:00
Merge pull request #168 from hjjg/feature-localehandling1
locale-safe check if we have enough memory installed
This commit is contained in:
commit
8586723e70
@ -19,8 +19,8 @@ fi
|
|||||||
|
|
||||||
# Check that we have enough memory. Skip the check if we appear to be
|
# Check that we have enough memory. Skip the check if we appear to be
|
||||||
# running inside of Vagrant, because that's really just for testing.
|
# running inside of Vagrant, because that's really just for testing.
|
||||||
TOTAL_PHYSICAL_MEM=$(free -m | grep ^Mem: | sed "s/^Mem: *\([0-9]*\).*/\1/")
|
TOTAL_PHYSICAL_MEM=$(head -n 1 /proc/meminfo | awk '{print $2}')
|
||||||
if [ $TOTAL_PHYSICAL_MEM -lt 768 ]; then
|
if [ $TOTAL_PHYSICAL_MEM -lt 786432 ]; then
|
||||||
if [ ! -d /vagrant ]; then
|
if [ ! -d /vagrant ]; then
|
||||||
echo "Your Mail-in-a-Box needs more than $TOTAL_PHYSICAL_MEM MB RAM."
|
echo "Your Mail-in-a-Box needs more than $TOTAL_PHYSICAL_MEM MB RAM."
|
||||||
echo "Please provision a machine with at least 768 MB, 1 GB recommended."
|
echo "Please provision a machine with at least 768 MB, 1 GB recommended."
|
||||||
|
Loading…
Reference in New Issue
Block a user