From mboxrd@z Thu Jan 1 00:00:00 1970 From: Adolf Belka To: development@lists.ipfire.org Subject: Re: [PATCH 7/8] ids-functions.pl: Adjust code to deal with new LWP::UserAgent. Date: Mon, 14 Feb 2022 22:15:21 +0100 Message-ID: In-Reply-To: <20220203111613.13632-7-stefan.schantl@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============6649309224736493489==" List-Id: --===============6649309224736493489== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Reviewed-by: Adolf Belka On 03/02/2022 12:16, Stefan Schantl wrote: > Signed-off-by: Stefan Schantl > --- > config/cfgroot/ids-functions.pl | 10 +++++++++- > 1 file changed, 9 insertions(+), 1 deletion(-) > > diff --git a/config/cfgroot/ids-functions.pl b/config/cfgroot/ids-functions= .pl > index 74d55def6..bf02bcbaa 100644 > --- a/config/cfgroot/ids-functions.pl > +++ b/config/cfgroot/ids-functions.pl > @@ -281,7 +281,15 @@ sub downloadruleset ($) { > use LWP::UserAgent; > =20 > # Init the download module. > - my $downloader =3D LWP::UserAgent->new; > + # > + # Request SSL hostname verification and specify path > + # to the CA file. > + my $downloader =3D LWP::UserAgent->new( > + ssl_opts =3D> { > + SSL_ca_file =3D> '/etc/ssl/cert.pem', > + verify_hostname =3D> 1, > + } > + ); > =20 > # Set timeout to 10 seconds. > $downloader->timeout(10); --===============6649309224736493489==--