[pve-devel] [PATCH qemu-server] fix backpu/restore with ipv6/ports for pbs
Dominik Csapak
d.csapak at proxmox.com
Thu Dec 3 09:43:09 CET 2020
by copying the 'get_server_with_port' from PVE::Storage::PBSPlugin
here and using it for generating the server
Signed-off-by: Dominik Csapak <d.csapak at proxmox.com>
---
ideally we would make the get_server_with_port sub in pve-storage
public and use it here (like we do e.g. in container with
'run_raw_client_cmd') or even push that stuff into
PVE::PBSClient module in comment to reuse that here and in pve-storage
but to avoid the dependency bumps and fix it fast, this
should be enough for now
PVE/QemuServer.pm | 14 +++++++++++++-
PVE/VZDump/QemuServer.pm | 3 ++-
2 files changed, 15 insertions(+), 2 deletions(-)
diff --git a/PVE/QemuServer.pm b/PVE/QemuServer.pm
index 4989938..7170230 100644
--- a/PVE/QemuServer.pm
+++ b/PVE/QemuServer.pm
@@ -6050,6 +6050,18 @@ sub rescan {
}
}
+sub pbs_get_server_with_port {
+ my ($scfg) = @_;
+
+ my $server = $scfg->{server};
+ $server = "[$server]" if $server =~ /^$IPV6RE$/;
+
+ if (my $port = $scfg->{port}) {
+ $server .= ":$port" if $port != 8007;
+ }
+ return $server;
+}
+
sub restore_proxmox_backup_archive {
my ($archive, $vmid, $user, $options) = @_;
@@ -6058,7 +6070,7 @@ sub restore_proxmox_backup_archive {
my ($storeid, $volname) = PVE::Storage::parse_volume_id($archive);
my $scfg = PVE::Storage::storage_config($storecfg, $storeid);
- my $server = $scfg->{server};
+ my $server = pbs_get_server_with_port($scfg);
my $datastore = $scfg->{datastore};
my $username = $scfg->{username} // 'root at pam';
my $fingerprint = $scfg->{fingerprint};
diff --git a/PVE/VZDump/QemuServer.pm b/PVE/VZDump/QemuServer.pm
index 5003676..57436e6 100644
--- a/PVE/VZDump/QemuServer.pm
+++ b/PVE/VZDump/QemuServer.pm
@@ -473,7 +473,8 @@ sub archive_pbs {
my $starttime = time();
- my $server = $scfg->{server};
+ my $server = PVE::QemuServer::pbs_get_server_with_port($scfg);
+
my $datastore = $scfg->{datastore};
my $username = $scfg->{username} // 'root at pam';
my $fingerprint = $scfg->{fingerprint};
--
2.20.1
More information about the pve-devel
mailing list