From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from gate001.proxmox.com (gate001.proxmox.com [IPv6:2a0f:8001:1:32::40]) by lore.proxmox.com (Postfix) with ESMTPS id 1E1CD1FF0EA for ; Thu, 13 Aug 2026 13:27:32 +0200 (CEST) Received: from gate001.proxmox.com (localhost.localdomain [127.0.0.1]) by gate001.proxmox.com (Proxmox) with ESMTP id F35D821567; Thu, 13 Aug 2026 13:27:29 +0200 (CEST) From: Jakob Klocker To: pve-devel@lists.proxmox.com Subject: [PATCH qemu-server 1/6] qm: do not restart VM when 'reboot' is disabled Date: Thu, 13 Aug 2026 13:27:12 +0200 Message-ID: <20260813112717.272254-2-j.klocker@proxmox.com> X-Mailer: git-send-email 2.47.3 In-Reply-To: <20260813112717.272254-1-j.klocker@proxmox.com> References: <20260813112717.272254-1-j.klocker@proxmox.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-SPAM-LEVEL: Spam detection results: 1 AWL -0.577 Adjusted score from AWL reputation of From: address DMARC_MISSING 0.1 Missing DMARC policy KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment (newer systems) KAM_LAZY_DOMAIN_SECURITY 1 Sending domain does not have any anti-forgery methods RDNS_NONE 1.274 Delivered to internal network by a host with no rDNS SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_NONE 0.001 SPF: sender does not publish an SPF Record Message-ID-Hash: YZCAU34OERMLN27J2EVMSJCAOMC332PM X-Message-ID-Hash: YZCAU34OERMLN27J2EVMSJCAOMC332PM X-MailFrom: jklocker@iris.proxmox.com X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; loop; banned-address; emergency; member-moderation; nonmember-moderation; administrivia; implicit-dest; max-recipients; max-size; news-moderation; no-subject; digests; suspicious-header CC: Jakob Klocker X-Mailman-Version: 3.3.10 Precedence: list List-Id: Proxmox VE development discussion List-Help: List-Owner: List-Post: List-Subscribe: List-Unsubscribe: The `reboot` option is documented as making the VM exit instead of rebooting when set to `0`, but `qm cleanup` restarts it regardless. Only restart if the option is not disabled. This also covers reboots requested through `qm reboot` or the API, which so far restarted the VM even with `reboot` set to '0'. Signed-off-by: Jakob Klocker --- src/PVE/CLI/qm.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/PVE/CLI/qm.pm b/src/PVE/CLI/qm.pm index b903c1f1..f35b8a30 100755 --- a/src/PVE/CLI/qm.pm +++ b/src/PVE/CLI/qm.pm @@ -1160,8 +1160,9 @@ __PACKAGE__->register_method({ PVE::GuestHelpers::exec_hookscript($conf, $vmid, 'post-stop'); } - $restart = eval { PVE::QemuServer::clear_reboot_request($vmid) }; + my $reboot_requested = eval { PVE::QemuServer::clear_reboot_request($vmid) }; warn $@ if $@; + $restart = $reboot_requested && ($conf->{reboot} // 1); }, ); -- 2.47.3