mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-08-17 18:39:13 +00:00
pveceph init: allow protocol http
It is no longer possible to download the key without that.
This commit is contained in:
parent
b14c577929
commit
bf394af598
@ -110,7 +110,7 @@ __PACKAGE__->register_method ({
|
||||
#die "unable to download ceph release key\n";
|
||||
|
||||
my $tmp_key_file = "/tmp/ceph-release-keys.asc";
|
||||
my $ua = LWP::UserAgent->new(protocols_allowed => ['https'], timeout => 30);
|
||||
my $ua = LWP::UserAgent->new(protocols_allowed => ['http', 'https'], timeout => 30);
|
||||
$ua->env_proxy;
|
||||
my $response = $ua->get($keyurl);
|
||||
if ($response->is_success) {
|
||||
|
Loading…
Reference in New Issue
Block a user