]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/commitdiff
ids-functions.pl: Do not create an empty ignored settings file.
authorStefan Schantl <stefan.schantl@ipfire.org>
Sat, 5 Mar 2022 17:53:10 +0000 (18:53 +0100)
committerMichael Tremer <michael.tremer@ipfire.org>
Mon, 7 Mar 2022 18:50:34 +0000 (18:50 +0000)
The file will be created by the WUI, when adding the first host.

Signed-off-by: Stefan Schantl <stefan.schantl@ipfire.org>
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
config/cfgroot/ids-functions.pl

index e8793f8be24c0996fd8dd4015abaaf520412381a..37dd42b03f06d18b95e50c0d77180d9f76b3cd82 100644 (file)
@@ -153,7 +153,6 @@ sub check_and_create_filelayout() {
        unless (-f "$suricata_default_rulefiles_file") { &create_empty_file($suricata_default_rulefiles_file); }
        unless (-f "$ids_settings_file") { &create_empty_file($ids_settings_file); }
        unless (-f "$providers_settings_file") { &create_empty_file($providers_settings_file); }
-       unless (-f "$ignored_file") { &create_empty_file($ignored_file); }
        unless (-f "$whitelist_file" ) { &create_empty_file($whitelist_file); }
 }