https://bugzilla.redhat.com/show_bug.cgi?id=1297527 --- Comment #2 from Denis Fateyev <denis@xxxxxxxxxxx> --- Right, technically "LWP::Protocol::https" in rhel6 doesn't support HTTPS by default. In more details, "perl(LWP::Protocol::https)" in rhel6 is provided by "perl-libwww-perl" which doesn't require SSL by itself. # yum whatprovides 'perl(LWP::Protocol::https)' ... perl-libwww-perl-5.833-2.el6.noarch : A Perl interface to the World-Wide Web Repo : base Matched from: Other : perl(LWP::Protocol::https) ... perl-libwww-perl-5.833-2.el6.noarch : A Perl interface to the World-Wide Web Repo : installed Matched from: Other : Provides-match: perl(LWP::Protocol::https) # rpm -qR perl-libwww-perl /usr/bin/perl mailcap perl >= 0:5.002 perl >= 0:5.004 perl >= 0:5.005 perl(:MODULE_COMPAT_5.10.1) perl(AnyDBM_File) perl(Carp) perl(Compress::Zlib) perl(Digest::MD5) perl(Exporter) perl(Fcntl) perl(File::Listing) perl(Getopt::Long) perl(Getopt::Std) perl(HTML::Entities) perl(HTTP::Cookies) perl(HTTP::Cookies::Netscape) perl(HTTP::Date) perl(HTTP::Headers) perl(HTTP::Headers::Util) perl(HTTP::Message) perl(HTTP::Negotiate) perl(HTTP::Request) perl(HTTP::Response) perl(HTTP::Status) perl(IO::Select) perl(IO::Socket) perl(LWP) perl(LWP::MediaTypes) perl(LWP::MemberMixin) perl(LWP::Protocol) perl(LWP::Protocol::http) perl(LWP::Protocol::http10) perl(LWP::Simple) perl(LWP::UserAgent) perl(MIME::Base64) perl(Net::HTTP) perl(Net::HTTP::Methods) perl(Net::HTTPS) perl(Net::NNTP) perl(Time::Local) perl(URI) perl(URI::Heuristic) perl(URI::URL) perl(WWW::RobotRules) perl(base) perl(integer) perl(locale) perl(strict) perl(vars) perl-HTML-Parser >= 3.33 rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 rpmlib(VersionedDependencies) <= 3.0.3-1 rpmlib(PayloadIsXz) <= 5.2-1 -------------- A simple practical check: # yum install 'perl(LWP::Protocol::https)' ... Package perl-libwww-perl-5.833-2.el6.noarch already installed and latest version # perl -le 'use LWP::UserAgent; my $ua = new LWP::UserAgent; my $request = new HTTP::Request("GET", "https://bugzilla.redhat.com"); my $response = $ua->request($request); print $response->content;' LWP will support https URLs if either Crypt::SSLeay or IO::Socket::SSL is installed. More information at <http://search.cpan.org/dist/libwww-perl/README.SSL>. P.S. In rhel7 and fedora it's different: perl(LWP::Protocol::https) is provided by a separate package which requires IO::Socket::SSL. -- You are receiving this mail because: You are on the CC list for the bug. You are always notified about changes to this product and component _______________________________________________ package-review mailing list package-review@xxxxxxxxxxxxxxxxxxxxxxx https://admin.fedoraproject.org/mailman/listinfo/package-review