mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-11 03:25:54 +02:00
ids.cgi: Set state of used rulefile to on if it contains rules
Only set the state of a used rulefile to "on" if it is present in the %idsrules hash. This happens if it contains at least one rule. This prevents from showing a rulefile in the ruleset section if, it does not exist anymore or does not contains any rules at all. Signed-off-by: Stefan Schantl <stefan.schantl@ipfire.org>
This commit is contained in:
@@ -300,8 +300,13 @@ if(-f $idsusedrulefilesfile) {
|
||||
if ($line =~ /.*- (.*)/) {
|
||||
my $rulefile = $1;
|
||||
|
||||
# Add the rulefile to the %idsrules hash.
|
||||
$idsrules{$rulefile}{'Rulefile'}{'State'} = "on";
|
||||
# Check if the current rulefile exists in the %idsrules hash.
|
||||
# If not, the file probably does not exist anymore or contains
|
||||
# no rules.
|
||||
if($idsrules{$rulefile}) {
|
||||
# Add the rulefile state to the %idsrules hash.
|
||||
$idsrules{$rulefile}{'Rulefile'}{'State'} = "on";
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user