[pve-devel] [PATCH qemu-server v10 2/6] add vnc-clipboard variable to return at status/current
Markus Frank
m.frank at proxmox.com
Thu Aug 24 10:03:50 CEST 2023
By that noVNC is able to check if clipboard is active.
Signed-off-by: Markus Frank <m.frank at proxmox.com>
---
PVE/API2/Qemu.pm | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/PVE/API2/Qemu.pm b/PVE/API2/Qemu.pm
index 6341402..4ef84be 100644
--- a/PVE/API2/Qemu.pm
+++ b/PVE/API2/Qemu.pm
@@ -2697,6 +2697,11 @@ __PACKAGE__->register_method({
type => 'boolean',
optional => 1,
},
+ 'vnc-clipboard' => {
+ description => "QEMU clipboard for noVNC is enabled in config.",
+ type => 'boolean',
+ optional => 1,
+ },
},
},
code => sub {
@@ -2715,6 +2720,7 @@ __PACKAGE__->register_method({
my $spice = defined($vga->{type}) && $vga->{type} =~ /^virtio/;
$spice ||= PVE::QemuServer::vga_conf_has_spice($conf->{vga});
$status->{spice} = 1 if $spice;
+ $status->{'vnc-clipboard'} = $vga->{'vnc-clipboard'};
}
$status->{agent} = 1 if PVE::QemuServer::get_qga_key($conf, 'enabled');
--
2.39.2
More information about the pve-devel
mailing list