From: Daan De Meyer Date: Mon, 11 May 2026 11:42:53 +0000 (+0200) Subject: vmspawn: Use builtin vdagent instead of spicevmc X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=54776b5fcee5dc50f214fc7bba5faa8c29a74f00;p=thirdparty%2Fsystemd.git vmspawn: Use builtin vdagent instead of spicevmc The builtin one also makes the clipboard and such work. spicevmc is only required for remote desktop use cases, so let's use the builtin one instead. --- diff --git a/src/vmspawn/vmspawn.c b/src/vmspawn/vmspawn.c index f49b36af1e8..27fa3501ee5 100644 --- a/src/vmspawn/vmspawn.c +++ b/src/vmspawn/vmspawn.c @@ -2965,9 +2965,9 @@ static int run_virtual_machine(int kvm_device_fd, int vhost_device_fd) { return r; r = qemu_config_section(config_file, "chardev", "vdagent", - "backend", "spicevmc", - "debug", "0", - "name", "vdagent"); + "backend", "qemu-vdagent", + "clipboard", "on", + "debug", "0"); if (r < 0) return r;