aboutsummaryrefslogtreecommitdiffstats
path: root/config/sarg
diff options
context:
space:
mode:
authorRenato Botelho <garga@FreeBSD.org>2015-04-27 15:48:22 -0300
committerRenato Botelho <garga@FreeBSD.org>2015-04-27 15:48:22 -0300
commit277f2c1ae87c97c6eaf82b9b22cae58b9460279e (patch)
tree066cb100a3dd78132bd3f658bb675dda757189ed /config/sarg
parent1ccbfc669535dfa0e64e52cec914c6d5ae0f8415 (diff)
downloadpfsense-packages-277f2c1ae87c97c6eaf82b9b22cae58b9460279e.tar.gz
pfsense-packages-277f2c1ae87c97c6eaf82b9b22cae58b9460279e.tar.bz2
pfsense-packages-277f2c1ae87c97c6eaf82b9b22cae58b9460279e.zip
Sanitize sarg version, add port_category, run_depends and fix pbi checking
Diffstat (limited to 'config/sarg')
-rw-r--r--config/sarg/sarg.inc2
-rwxr-xr-xconfig/sarg/sarg_realtime.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/config/sarg/sarg.inc b/config/sarg/sarg.inc
index 2788dab9..ce2617e1 100644
--- a/config/sarg/sarg.inc
+++ b/config/sarg/sarg.inc
@@ -32,7 +32,7 @@
*/
/* ========================================================================== */
$pf_version=substr(trim(file_get_contents("/etc/version")),0,3);
-if ($pf_version > 2.0){
+if ($pf_version == "2.1" || $pf_version == "2.2"){
// Function to get squidGuard directory
// each squidGuard version has a different directory
diff --git a/config/sarg/sarg_realtime.php b/config/sarg/sarg_realtime.php
index c5d926e5..f7618d1a 100755
--- a/config/sarg/sarg_realtime.php
+++ b/config/sarg/sarg_realtime.php
@@ -28,7 +28,7 @@
*/
$pf_version=substr(trim(file_get_contents("/etc/version")),0,3);
-if ($pf_version > 2.0)
+if ($pf_version == "2.1" || $pf_version == "2.2")
define('SARG_DIR', '/usr/pbi/sarg-' . php_uname("m"));
else
define('SARG_DIR', '/usr/local');