diff options
author | bmeeks8 <bmeeks8@bellsouth.net> | 2014-09-20 16:35:40 -0400 |
---|---|---|
committer | bmeeks8 <bmeeks8@bellsouth.net> | 2014-12-15 12:04:34 -0500 |
commit | d2600c88e6720a1f6f2dad74bbe8dac60b435d97 (patch) | |
tree | 462477383f8000ec544dd9fe0842d29bef61c101 /config/suricata/suricata_check_for_rule_updates.php | |
parent | 9c33543db52aea06e01d4289a55fe9522a40327c (diff) | |
download | pfsense-packages-d2600c88e6720a1f6f2dad74bbe8dac60b435d97.tar.gz pfsense-packages-d2600c88e6720a1f6f2dad74bbe8dac60b435d97.tar.bz2 pfsense-packages-d2600c88e6720a1f6f2dad74bbe8dac60b435d97.zip |
Ensure defined CONSTANTS are unique to this package.
Diffstat (limited to 'config/suricata/suricata_check_for_rule_updates.php')
-rw-r--r-- | config/suricata/suricata_check_for_rule_updates.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/config/suricata/suricata_check_for_rule_updates.php b/config/suricata/suricata_check_for_rule_updates.php index eeb7be6c..065825b6 100644 --- a/config/suricata/suricata_check_for_rule_updates.php +++ b/config/suricata/suricata_check_for_rule_updates.php @@ -60,8 +60,8 @@ if (!defined("GPLV2_DNLD_FILENAME")) define("GPLV2_DNLD_FILENAME", "community-rules.tar.gz"); if (!defined("GPLV2_DNLD_URL")) define("GPLV2_DNLD_URL", "https://s3.amazonaws.com/snort-org/www/rules/community/"); -if (!defined("RULES_UPD_LOGFILE")) - define("RULES_UPD_LOGFILE", SURICATALOGDIR . "/suricata_rules_update.log"); +if (!defined("SURICATA_RULES_UPD_LOGFILE")) + define("SURICATA_RULES_UPD_LOGFILE", SURICATALOGDIR . "/suricata_rules_update.log"); if (!defined("VRT_FILE_PREFIX")) define("VRT_FILE_PREFIX", "snort_"); if (!defined("GPL_FILE_PREFIX")) @@ -73,7 +73,7 @@ if (!defined("ET_PRO_FILE_PREFIX")) $suricatadir = SURICATADIR; $suricatalogdir = SURICATALOGDIR; -$suricata_rules_upd_log = RULES_UPD_LOGFILE; +$suricata_rules_upd_log = SURICATA_RULES_UPD_LOGFILE; /* Save the state of $pkg_interface so we can restore it */ $pkg_interface_orig = $pkg_interface; |