From: Daniel Kahn Gillmor Date: Fri, 11 Feb 2011 00:27:34 +0000 (-0500) Subject: fix typo in stdio name, remove unneeded -no-reboot flag X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=38f77cfecab65505ea0e1aff1d7f7edd8434ab45;p=kvm-manager.git fix typo in stdio name, remove unneeded -no-reboot flag --- diff --git a/kvm-manager b/kvm-manager index 3e907f9..b1f260c 100755 --- a/kvm-manager +++ b/kvm-manager @@ -72,11 +72,10 @@ up() { -rtc base=utc \ -usb \ -device virtio-balloon-pci,id=balloon0,bus=pci.0 \ - -chardev "socket,id=serial0,path=$OWNERHOME/vms/$VNAME/console.socket,server,nowait" -device isa-serial,chardev=serial0 \ + -chardev "socket,id=serial0,path=$OWNERHOME/vms/$VMNAME/console.socket,server,nowait" -device isa-serial,chardev=serial0 \ -smp "${SMP:-1},maxcpus=${MAXCPUS:-8}" \ -device "virtio-net-pci,vlan=0,id=net0,mac=$MAC,bus=pci.0" \ - -net "tap,ifname=$TAP,script=no,downscript=no,vlan=0,name=hostnet0" \ - -no-reboot + -net "tap,ifname=$TAP,script=no,downscript=no,vlan=0,name=hostnet0" }