From 28d8e248c31128e1585169e3435b66e2b6ff225e Mon Sep 17 00:00:00 2001 From: Aaron Lauterer Date: Mon, 7 Apr 2025 18:27:15 +0200 Subject: [PATCH] vmstatus_return_properties: add missing serial property Fixes: 8107b37 ("add serial:1 to vmstatus when config has a serial device configured") Signed-off-by: Aaron Lauterer Link: https://lore.proxmox.com/20250407162718.495812-2-a.lauterer@proxmox.com/ --- PVE/QemuServer.pm | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/PVE/QemuServer.pm b/PVE/QemuServer.pm index 1efb097c..b2d417cb 100644 --- a/PVE/QemuServer.pm +++ b/PVE/QemuServer.pm @@ -2789,6 +2789,11 @@ our $vmstatus_return_properties = { optional => 1, default => 0, }, + serial => { + description => "Guest has serial device configured.", + type => 'boolean', + optional => 1, + }, }; my $last_proc_pid_stat;