diff options
author | bmeeks8 <bmeeks8@bellsouth.net> | 2015-07-22 20:31:30 -0400 |
---|---|---|
committer | bmeeks8 <bmeeks8@bellsouth.net> | 2015-07-22 20:31:30 -0400 |
commit | afba4e722681c35163ec48b7cacffa8b8cb88e5f (patch) | |
tree | b0f50f4c1357081ac692f0197492320ea6ea5f76 /config/suricata/suricata_post_install.php | |
parent | e4e3ad354f0175ec6ed8e39c40ff2a5666856a8b (diff) | |
download | pfsense-packages-afba4e722681c35163ec48b7cacffa8b8cb88e5f.tar.gz pfsense-packages-afba4e722681c35163ec48b7cacffa8b8cb88e5f.tar.bz2 pfsense-packages-afba4e722681c35163ec48b7cacffa8b8cb88e5f.zip |
Add new feature to hide deprecated rules categories in GUI.
Diffstat (limited to 'config/suricata/suricata_post_install.php')
-rw-r--r-- | config/suricata/suricata_post_install.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/config/suricata/suricata_post_install.php b/config/suricata/suricata_post_install.php index aec8983e..3931d682 100644 --- a/config/suricata/suricata_post_install.php +++ b/config/suricata/suricata_post_install.php @@ -130,6 +130,10 @@ if ($config['installedpackages']['suricata']['config'][0]['et_iqrisk_enable'] == install_cron_job("/usr/bin/nice -n20 /usr/local/bin/php -f /usr/local/pkg/suricata/suricata_etiqrisk_update.php", TRUE, 0, "*/6", "*", "*", "*", "root"); } +// Move deprecated_rules file to SURICATADIR/rules directory +@rename("/usr/local/pkg/suricata/deprecated_rules", "{$suricatadir}rules/deprecated_rules"); + + /*********************************************************/ /* START OF BUG FIX CODE */ /* */ |