aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbmeeks8 <bmeeks8@bellsouth.net>2014-07-25 11:47:07 -0400
committerbmeeks8 <bmeeks8@bellsouth.net>2014-07-25 11:47:07 -0400
commit27b4b1af377946e6a23fc8b1785ab5e0a8fe4ad3 (patch)
tree2b7ca7d1cc0aef02152127579aa723e9b6bd6ba8
parent80c3f27abfe8ea80278072f06e162277e876a22d (diff)
downloadpfsense-packages-27b4b1af377946e6a23fc8b1785ab5e0a8fe4ad3.tar.gz
pfsense-packages-27b4b1af377946e6a23fc8b1785ab5e0a8fe4ad3.tar.bz2
pfsense-packages-27b4b1af377946e6a23fc8b1785ab5e0a8fe4ad3.zip
Fix-up cron task path to new home of rules update PHP file.
-rwxr-xr-xconfig/snort/snort.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/config/snort/snort.inc b/config/snort/snort.inc
index 362002cd..1b3011fa 100755
--- a/config/snort/snort.inc
+++ b/config/snort/snort.inc
@@ -831,7 +831,7 @@ function snort_rules_up_install_cron($should_install) {
$snort_rules_up_wday = "*";
}
- $command = "/usr/bin/nice -n20 /usr/local/bin/php -f /usr/local/www/snort/snort_check_for_rule_updates.php";
+ $command = "/usr/bin/nice -n20 /usr/local/bin/php -f /usr/local/pkg/snort/snort_check_for_rule_updates.php";
install_cron_job($command, $should_install, $snort_rules_up_min, $snort_rules_up_hr, $snort_rules_up_mday, $snort_rules_up_month, $snort_rules_up_wday, "root");
}