diff options
-rw-r--r-- | perl-install/install/NEWS | 1 | ||||
-rw-r--r-- | perl-install/install/media.pm | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 1666b1917..e28f5303f 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,4 +1,5 @@ - recognize new kernel 5.5 - 5.7 drivers +- support loading auto_install file from https url Version 18.31 - 18 June 2020 diff --git a/perl-install/install/media.pm b/perl-install/install/media.pm index 9f5fb34c1..4b9360045 100644 --- a/perl-install/install/media.pm +++ b/perl-install/install/media.pm @@ -336,7 +336,7 @@ sub getFile_ { sub get_file_and_size { my ($phys_m, $f) = @_; - if ($f =~ m|^http://|) { + if ($f =~ m|^https?://|) { require install::http; install::http::get_file_and_size($f); } elsif (member($phys_m->{method}, qw(ftp http))) { |