feat: Don't remove casing from machine name (#1382)

This commit is contained in:
Kroese
2026-08-16 07:27:05 +02:00
committed by GitHub
parent b909555ef3
commit 768b8fa51a
+2 -1
View File
@@ -29,7 +29,8 @@ configureMonitor() {
[ -n "$QMP" ] && MON_OPTS+=" -qmp $QMP"
[ -n "$MONITOR" ] && MON_OPTS+=" -monitor $MONITOR"
MON_OPTS+=" -name $PROCESS,process=$PROCESS,debug-threads=on"
local name="${APP}// /-}"
MON_OPTS+=" -name $name,process=$PROCESS,debug-threads=on"
MON_OPTS+=" -pidfile $QEMU_PID"
MON_OPTS="${MON_OPTS# }"