summaryrefslogtreecommitdiffstats
path: root/etc/inc/system.inc
diff options
context:
space:
mode:
authorScott Ullrich <sullrich@pfsense.org>2005-09-20 21:14:24 +0000
committerScott Ullrich <sullrich@pfsense.org>2005-09-20 21:14:24 +0000
commitdd1e244a9ebe0f27410bd0aa6c3436953d1d57c8 (patch)
tree1464f42790fa4d6dca02e42907b0eed6c62ca65f /etc/inc/system.inc
parentd290167cffc63c5a2a38e342e309488b40e0f1af (diff)
downloadpfsense-dd1e244a9ebe0f27410bd0aa6c3436953d1d57c8.zip
pfsense-dd1e244a9ebe0f27410bd0aa6c3436953d1d57c8.tar.gz
Since machines very rarely show the avail memory _AS_ 128, set it to < 120
Diffstat (limited to 'etc/inc/system.inc')
-rw-r--r--etc/inc/system.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/inc/system.inc b/etc/inc/system.inc
index 0a3a250..ff27fa0 100644
--- a/etc/inc/system.inc
+++ b/etc/inc/system.inc
@@ -401,7 +401,7 @@ EOD;
/* if we are strapped for memory, do not use fast cgi */
$memory = get_memory();
$avail_mem = $memory[1];
- if($avail < 128)
+ if($avail < 120)
$use_fastcgi = false;
else
$use_fastcgi = true;
OpenPOWER on IntegriCloud