aboutsummaryrefslogtreecommitdiffstats
path: root/packages/snort
diff options
context:
space:
mode:
authorScott Ullrich <sullrich@pfsense.org>2006-09-30 19:24:19 +0000
committerScott Ullrich <sullrich@pfsense.org>2006-09-30 19:24:19 +0000
commit454caeb9c329afebdd5c238f577fb470951044a6 (patch)
tree9878eceed925757a2832eea291ef00b9692cbe9c /packages/snort
parent75d958e2a5ba6862d363aaf876083819a05ea5e3 (diff)
downloadpfsense-packages-454caeb9c329afebdd5c238f577fb470951044a6.tar.gz
pfsense-packages-454caeb9c329afebdd5c238f577fb470951044a6.tar.bz2
pfsense-packages-454caeb9c329afebdd5c238f577fb470951044a6.zip
Log when snort rules are being updated, or are updated.
Diffstat (limited to 'packages/snort')
-rw-r--r--packages/snort/snort_check_for_rule_updates.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/packages/snort/snort_check_for_rule_updates.php b/packages/snort/snort_check_for_rule_updates.php
index 4127b514..ca118f9b 100644
--- a/packages/snort/snort_check_for_rule_updates.php
+++ b/packages/snort/snort_check_for_rule_updates.php
@@ -44,6 +44,7 @@ $date1ts = strtotime($last_update_date);
$date2ts = strtotime($last_ruleset_download);
/* is there a newer ruleset available? */
if($date1ts > $date2ts or !$last_ruleset_download) {
+ log_error("There is a new set of Snort rules posted. Downloading...");
if(!$oinkid) {
log_error("Oinkid is not defined. We cannot automatically update the ruleset.");
echo "Oinkid is not defined. We cannot automatically update the ruleset.";
@@ -85,8 +86,10 @@ if($date1ts > $date2ts or !$last_ruleset_download) {
/* cleanup temporary directory */
exec("/bin/rm -rf {$tmpfname};");
echo "Rules are now up to date.\n";
+ log_error("Snort rules updated. New version: {$last_update_date}.");
} else {
echo "Rules are up to date.\n";
+ log_error("Snort rules are up to date. Not updating.");
}
?> \ No newline at end of file