[pve-devel] [PATCH manager] ui: qemu: options: use 'first disk' for legacy 'c' boot setting

Fiona Ebner f.ebner at proxmox.com
Wed Sep 28 09:54:52 CEST 2022


The kvm man page mentions that using 'c' will try booting from the
first hard disk, so the current '(no bootdisk)' text in the UI is not
accurate, and boot can still succeed.

Reported in the community forum:
https://forum.proxmox.com/threads/115800/

Signed-off-by: Fiona Ebner <f.ebner at proxmox.com>
---

An alternative would be using 'no explicit bootdisk'.

 www/manager6/qemu/Options.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www/manager6/qemu/Options.js b/www/manager6/qemu/Options.js
index a1def4bb..7b112400 100644
--- a/www/manager6/qemu/Options.js
+++ b/www/manager6/qemu/Options.js
@@ -121,7 +121,7 @@ Ext.define('PVE.qemu.Options', {
 			    if (bootdisk) {
 				text += bootdisk;
 			    } else {
-				text += gettext('(no bootdisk)');
+				text += gettext('first disk');
 			    }
 			} else if (sel === 'n') {
 			    text += gettext('any net');
-- 
2.30.2






More information about the pve-devel mailing list