aboutsummaryrefslogtreecommitdiffstats
path: root/config/suricata/suricata.inc
diff options
context:
space:
mode:
authorbmeeks8 <bmeeks8@bellsouth.net>2014-03-25 20:12:25 -0400
committerbmeeks8 <bmeeks8@bellsouth.net>2014-03-25 20:12:25 -0400
commit6f8ed307f40427e1e98c1be7cb7230214e4dccea (patch)
tree5b8152767099b5f1657deb4e9b1234be1214a108 /config/suricata/suricata.inc
parent239348fd4adb0ac6b634d5e8255f3081ac62efdf (diff)
downloadpfsense-packages-6f8ed307f40427e1e98c1be7cb7230214e4dccea.tar.gz
pfsense-packages-6f8ed307f40427e1e98c1be7cb7230214e4dccea.tar.bz2
pfsense-packages-6f8ed307f40427e1e98c1be7cb7230214e4dccea.zip
Set default to "true" for 'should install' cron job.
Diffstat (limited to 'config/suricata/suricata.inc')
-rw-r--r--config/suricata/suricata.inc6
1 files changed, 3 insertions, 3 deletions
diff --git a/config/suricata/suricata.inc b/config/suricata/suricata.inc
index 7936d41c..b5f5fb56 100644
--- a/config/suricata/suricata.inc
+++ b/config/suricata/suricata.inc
@@ -406,7 +406,7 @@ function suricata_build_list($suricatacfg, $listname = "", $whitelist = false) {
return $valresult;
}
-function suricata_rules_up_install_cron($should_install) {
+function suricata_rules_up_install_cron($should_install=true) {
global $config, $g;
$command = "/usr/bin/nice -n20 /usr/local/bin/php -f /usr/local/www/suricata/suricata_check_for_rule_updates.php";
@@ -479,7 +479,7 @@ function suricata_rules_up_install_cron($should_install) {
install_cron_job($command, $should_install, $suricata_rules_up_min, $suricata_rules_up_hr, $suricata_rules_up_mday, $suricata_rules_up_month, $suricata_rules_up_wday, "root");
}
-function suricata_loglimit_install_cron($should_install) {
+function suricata_loglimit_install_cron($should_install=true) {
install_cron_job("/usr/bin/nice -n20 /usr/local/bin/php -f /usr/local/pkg/suricata/suricata_check_cron_misc.inc", $should_install, "*/5");
}
@@ -516,7 +516,7 @@ function sync_suricata_package_config() {
$suricataglob = $config['installedpackages']['suricata']['config'][0];
// setup the log directory size check job if enabled
- suricata_loglimit_install_cron($suricataglob['suricataloglimit'] == 'on' ? true : false);
+ suricata_loglimit_install_cron();
// setup the suricata rules update job if enabled
suricata_rules_up_install_cron($suricataglob['autoruleupdate'] != "never_up" ? true : false);