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:
Stefan Schantl
2018-09-11 12:00:31 +02:00
parent b7e2974394
commit 43ab7d9c30

View File

@@ -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";
}
}
}
}