From mboxrd@z Thu Jan 1 00:00:00 1970 From: Peter =?utf-8?q?M=C3=BCller?= To: development@lists.ipfire.org Subject: Re: [PATCH 10/12] rules.pl: Check if an ipset db file exists before call to restore it. Date: Mon, 14 Feb 2022 21:06:01 +0000 Message-ID: <05d7a79f-1d10-39ef-58f0-5a1ddc6f030e@ipfire.org> In-Reply-To: <20220214184257.2406-10-stefan.schantl@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============8633777041653923142==" List-Id: --===============8633777041653923142== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Reviewed-by: Peter M=C3=BCller > Signed-off-by: Stefan Schantl > --- > config/firewall/rules.pl | 10 ++++++++-- > 1 file changed, 8 insertions(+), 2 deletions(-) >=20 > diff --git a/config/firewall/rules.pl b/config/firewall/rules.pl > index 29990ee67..162781f7a 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) =3D @_; > =20 > - # Run ipset and restore the list of the given country code. > - run("$IPSET restore < $Location::Functions::ipset_db_directory/$ccode.ips= et4"); > + my $file_prefix =3D "ipset4"; > + my $db_file =3D "$Location::Functions::ipset_db_directory/$ccode.$file_pr= efix"; > + > + # 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"); > + } > } --===============8633777041653923142==--