mirror of
https://github.com/libvirt/libvirt.git
synced 2025-02-25 18:55:26 -06:00
xen: Fix chardev listen sexpr formatting
'listen' isn't a valid qemu-dm option, as reported a long time ago here: https://bugzilla.redhat.com/show_bug.cgi?id=492958 Matches the near identical logic in qemu_conf.c v2: When parsing sexpr, only match on ",server", rather than full ',server,nowait'.
This commit is contained in:
@@ -22,4 +22,4 @@ vncpasswd = "123poi"
|
||||
disk = [ "phy:/dev/HostVG/XenGuest2,hda,w", "file:/root/boot.iso,hdc:cdrom,r" ]
|
||||
vif = [ "mac=00:16:3e:66:92:9c,bridge=xenbr1,script=vif-bridge,type=ioemu" ]
|
||||
parallel = "none"
|
||||
serial = "telnet:127.0.0.1:9999,listen"
|
||||
serial = "telnet:127.0.0.1:9999,server,nowait"
|
||||
|
||||
@@ -22,4 +22,4 @@ vncpasswd = "123poi"
|
||||
disk = [ "phy:/dev/HostVG/XenGuest2,hda,w", "file:/root/boot.iso,hdc:cdrom,r" ]
|
||||
vif = [ "mac=00:16:3e:66:92:9c,bridge=xenbr1,script=vif-bridge,type=ioemu" ]
|
||||
parallel = "none"
|
||||
serial = "unix:/tmp/serial.sock,listen"
|
||||
serial = "unix:/tmp/serial.sock,server,nowait"
|
||||
|
||||
Reference in New Issue
Block a user