mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-10 11:05:54 +02:00
ids-functions.pl: Add private function to cleanup the rules directory.
This private function is used to remove any files which are stored in the IDS rules directory and prevent from any old (unneeded or conflicting) files after an update or complete change of the ruleset source. Signed-off-by: Stefan Schantl <stefan.schantl@ipfire.org>
This commit is contained in:
@@ -443,4 +443,23 @@ sub _check_rulesdir_permissions() {
|
||||
}
|
||||
}
|
||||
|
||||
#
|
||||
## Private function to cleanup the directory which contains
|
||||
## the IDS rules, before extracting and modifing the new ruleset.
|
||||
#
|
||||
sub _cleanup_rulesdir() {
|
||||
# Loop through the rules-directory.
|
||||
while ($item = glob($rulespath/*)) {
|
||||
# Skip element if it is a directory.
|
||||
next if -d $item;
|
||||
|
||||
# Delete the current processed item, if not, exit this function
|
||||
# and return an error message.
|
||||
unlink($item) or return "Could not delete $item. $!\n";
|
||||
}
|
||||
|
||||
# Return noting;
|
||||
return;
|
||||
}
|
||||
|
||||
1;
|
||||
|
||||
Reference in New Issue
Block a user