aboutsummaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorMarcello Coutinho <marcellocoutinho@gmail.com>2012-12-10 12:16:48 -0200
committerMarcello Coutinho <marcellocoutinho@gmail.com>2012-12-10 12:16:48 -0200
commit9a9887710df531ff5683a435838519dd4a0af9a7 (patch)
tree1a3a200072ddbafce95abeff2ae2fdf4d413e8ad /config
parentc6840cac7c6be3a9a61e13bb8df5a397091c3094 (diff)
downloadpfsense-packages-9a9887710df531ff5683a435838519dd4a0af9a7.tar.gz
pfsense-packages-9a9887710df531ff5683a435838519dd4a0af9a7.tar.bz2
pfsense-packages-9a9887710df531ff5683a435838519dd4a0af9a7.zip
squid3 - fix squid path after pfsense version check fix.
Diffstat (limited to 'config')
-rw-r--r--config/squid-reverse/swapstate_check.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/config/squid-reverse/swapstate_check.php b/config/squid-reverse/swapstate_check.php
index 6880e7a2..6ecfff3c 100644
--- a/config/squid-reverse/swapstate_check.php
+++ b/config/squid-reverse/swapstate_check.php
@@ -51,7 +51,7 @@ if ($settings['harddisk_cache_system'] != "null"){
// or the drive is 90% full and swap.state is larger than 1GB,
// kill it and initiate a rotate to write a fresh copy.
if (($swapstate_pct > 75) || (($diskusedpct > 90) && ($swapstate_size > 1024*1024*1024))) {
- mwexec_bg("/bin/rm $swapstate; ". SQUID_LOCALBASE . "/squid -k rotate");
+ mwexec_bg("/bin/rm $swapstate; ". SQUID_LOCALBASE . "/sbin/squid -k rotate");
log_error(gettext(sprintf("Squid swap.state file exceeded size limits. Removing and rotating. File was %d bytes, %d%% of total disk space.", $swapstate_size, $swapstate_pct)));
}
}