From 914fcc3205c1b8c08563f4d883d294060604569c Mon Sep 17 00:00:00 2001 From: Stefan Schantl Date: Sat, 12 Feb 2022 15:24:14 +0100 Subject: [PATCH] rules.pl: Check if an ipset db file exists before call to restore it. Signed-off-by: Stefan Schantl --- config/firewall/rules.pl | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/config/firewall/rules.pl b/config/firewall/rules.pl index 29990ee672..162781f7ac 100644 --- a/config/firewall/rules.pl +++ b/config/firewall/rules.pl @@ -927,6 +927,12 @@ sub firewall_is_in_subnet { sub ipset_restore ($) { my ($ccode) = @_; - # Run ipset and restore the list of the given country code. - run("$IPSET restore < $Location::Functions::ipset_db_directory/$ccode.ipset4"); + my $file_prefix = "ipset4"; + my $db_file = "$Location::Functions::ipset_db_directory/$ccode.$file_prefix"; + + # Check if the generated file exists. + if (-f $db_file) { + # Run ipset and restore the list of the given country code. + run("$IPSET restore < $db_file"); + } } -- 2.39.5