aboutsummaryrefslogtreecommitdiffstats
path: root/config/snort
diff options
context:
space:
mode:
authorrobiscool <robrob2626@yahoo.com>2009-06-11 17:50:16 -0700
committerrobiscool <robrob2626@yahoo.com>2009-06-11 17:50:16 -0700
commitb18ebea1735e19cd444fa4673178312d982a4340 (patch)
tree07f008ea046d388324bff3e4093e1b12aabb11bb /config/snort
parentdc4c0770e939749273d14bf548dc0cfef2bfacc8 (diff)
downloadpfsense-packages-b18ebea1735e19cd444fa4673178312d982a4340.tar.gz
pfsense-packages-b18ebea1735e19cd444fa4673178312d982a4340.tar.bz2
pfsense-packages-b18ebea1735e19cd444fa4673178312d982a4340.zip
begin code clean up
Diffstat (limited to 'config/snort')
-rw-r--r--config/snort/snort_download_rules.php32
1 files changed, 16 insertions, 16 deletions
diff --git a/config/snort/snort_download_rules.php b/config/snort/snort_download_rules.php
index 3a36c32b..077e8d72 100644
--- a/config/snort/snort_download_rules.php
+++ b/config/snort/snort_download_rules.php
@@ -284,9 +284,9 @@ if ($emerg_md5_check_new == $emerg_md5_check_old) {
if ($snort_md5_check_ok == on && $emergingthreats_url_chk != on) {
update_status(gettext("Cleaning the snort Directory..."));
update_output_window(gettext("removing..."));
- exec("/bin/rm -r {$snortdir}/rules/emerging*");
- exec("/bin/rm -r {$snortdir}/version.txt");
- update_status(gettext("Done making snort direcory."));
+ exec("/bin/rm {$snortdir}/rules/emerging*");
+ exec("/bin/rm {$snortdir}/version.txt");
+ update_status(gettext("Done making cleaning emrg direcory."));
}
/* Check if were up to date exits */
@@ -427,15 +427,15 @@ if ($snort_md5_check_ok != on && $emerg_md5_check_chk_ok != on) {
if (file_exists("{$snortdir}/rules")) {
update_status(gettext("Cleaning the snort Directory..."));
update_output_window(gettext("removing..."));
- exec("/bin/rm -r {$snortdir}/*");
- exec("/bin/rm -r {$snortdir}/rules/*");
- exec("/bin/rm -r /usr/local/lib/snort/dynamicrules/*");
+ exec("/bin/rm {$snortdir}/*");
+ exec("/bin/rm {$snortdir}/rules/*");
+ exec("/bin/rm /usr/local/lib/snort/dynamicrules/*");
} else {
update_status(gettext("Making Snort Directory..."));
update_output_window(gettext("should be fast..."));
exec("/bin/mkdir {$snortdir}");
exec("/bin/mkdir {$snortdir}/rules");
- exec("/bin/rm -r /usr/local/lib/snort/dynamicrules/*");
+ exec("/bin/rm /usr/local/lib/snort/dynamicrules/*");
update_status(gettext("Done making snort direcory."));
}
}
@@ -543,18 +543,18 @@ if (file_exists("{$tmpfname}/so_rules/precompiled/FreeBSD-7.0/i386/2.8.4/")) {
/* double make shure clean up emerg rules that dont belong */
if (file_exists("/usr/local/etc/snort/rules/emerging-botcc-BLOCK.rules")) {
apc_clear_cache();
- exec("/bin/rm -r /usr/local/etc/snort/rules/emerging-botcc-BLOCK.rules");
- exec("/bin/rm -r /usr/local/etc/snort/rules/emerging-botcc.rules");
- exec("/bin/rm -r /usr/local/etc/snort/rules/emerging-compromised-BLOCK.rules");
- exec("/bin/rm -r /usr/local/etc/snort/rules/emerging-drop-BLOCK.rules");
- exec("/bin/rm -r /usr/local/etc/snort/rules/emerging-dshield-BLOCK.rules");
- exec("/bin/rm -r /usr/local/etc/snort/rules/emerging-rbn-BLOCK.rules");
- exec("/bin/rm -r /usr/local/etc/snort/rules/emerging-tor-BLOCK.rules");
+ exec("/bin/rm /usr/local/etc/snort/rules/emerging-botcc-BLOCK.rules");
+ exec("/bin/rm /usr/local/etc/snort/rules/emerging-botcc.rules");
+ exec("/bin/rm /usr/local/etc/snort/rules/emerging-compromised-BLOCK.rules");
+ exec("/bin/rm /usr/local/etc/snort/rules/emerging-drop-BLOCK.rules");
+ exec("/bin/rm /usr/local/etc/snort/rules/emerging-dshield-BLOCK.rules");
+ exec("/bin/rm /usr/local/etc/snort/rules/emerging-rbn-BLOCK.rules");
+ exec("/bin/rm /usr/local/etc/snort/rules/emerging-tor-BLOCK.rules");
}
if (file_exists("/usr/local/lib/snort/dynamicrules//lib_sfdynamic_example_rule.so")) {
- exec("/bin/rm -r /usr/local/lib/snort/dynamicrules//lib_sfdynamic_example_rule.so");
- exec("/bin/rm -r /usr/local/lib/snort/dynamicrules//lib_sfdynamic_example*");
+ exec("/bin/rm /usr/local/lib/snort/dynamicrules//lib_sfdynamic_example_rule.so");
+ exec("/bin/rm /usr/local/lib/snort/dynamicrules//lib_sfdynamic_example*");
}
/* php code to flush out cache some people are reportting missing files this might help */