From 52826fc17ba013f773f909bd324403db3a90ca2e Mon Sep 17 00:00:00 2001 From: Michael Tokarev Date: Fri, 22 Apr 2022 15:17:01 +0300 Subject: [PATCH] d/xen-utils-common.xen.init: it is qemu -monitor none, not -monitor /dev/null It makes no sense to create qemu devices and shut them off to/from /dev/null. We were supposed to _not_ create these devices instead of creating them and getting rid of their output. We do not need these devices in the first place. --- debian/xen-utils-common.xen.init | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/xen-utils-common.xen.init b/debian/xen-utils-common.xen.init index 8dac05f9de..dadb3dcd08 100644 --- a/debian/xen-utils-common.xen.init +++ b/debian/xen-utils-common.xen.init @@ -60,7 +60,7 @@ OXENSTORED="$ROOT"/bin/oxenstored XENSTORED_PIDFILE="/run/xenstore.pid" QEMU=/usr/bin/qemu-system-i386 QEMU_PIDFILE="/run/qemu-dom0.pid" -QEMU_ARGS="-xen-domid 0 -xen-attach -name dom0 -nographic -M xenpv -daemonize -monitor /dev/null -serial /dev/null -parallel /dev/null" +QEMU_ARGS="-xen-domid 0 -xen-attach -name dom0 -nographic -M xenpv -daemonize -monitor none -serial none -parallel none" modules_setup() { -- 2.30.2