Re: [virt-tools-list] [PATCH v1] virtinst: Use virtio bus type for cdrom disk on s390x

2016-05-07 Thread Cole Robinson
On 05/05/2016 01:59 PM, Leno Hou wrote: > s390x doesn't support scsi and so was changed to use the scsi. virtio works > better on s390x with better performance outcomes. Change the default to > virtio for cdrom disks > Hmm, this is definitely supposed to be bus=virtio, and not bus=scsi with a vir

Re: [virt-tools-list] [PATCH] INSTALL: update Python version requirement to 2.7

2016-05-07 Thread Cole Robinson
On 05/06/2016 10:21 AM, Programmingkid wrote: > The virt-clone file uses the argparse module. This module is only found in > version 2.7 of Python or higher. So update the documentation to indicate > Python 2.7 or higher is required. > > Signed-off-by: John Arbuckle > --- > INSTALL | 2 +- > 1

Re: [virt-tools-list] [PATCH virt-install 1/2] Append '--attach' to virt-viewer for local display if spice gl enabled.

2016-05-07 Thread Cole Robinson
On 05/04/2016 05:33 AM, Lin Ma wrote: > Currently SPICE GL support is local-only, So it needs to attach to the > local display. > > Signed-off-by: Lin Ma > --- > virtinst/cli.py | 5 + > 1 file changed, 5 insertions(+) > > diff --git a/virtinst/cli.py b/virtinst/cli.py > index 8a3f6ae..cff1

Re: [virt-tools-list] argparse and Python 2.6

2016-05-07 Thread Cole Robinson
On 05/06/2016 11:51 AM, Programmingkid wrote: > > On May 6, 2016, at 7:52 AM, Cole Robinson wrote: > >> On 05/05/2016 10:49 PM, Programmingkid wrote: >>> I was trying to run virt-clone.py, when I encountered an error. This file >>> uses argparse. This feature was not added to Python until 2.7. I

Re: [virt-tools-list] [PATCH 2/5] virtinst: check minimum qemu/libvirt for spice+gl

2016-05-07 Thread Cole Robinson
On 04/28/2016 08:22 AM, Marc-André Lureau wrote: > Signed-off-by: Marc-André Lureau > --- > virtinst/guest.py | 5 + > virtinst/support.py | 1 + > 2 files changed, 6 insertions(+) > > diff --git a/virtinst/guest.py b/virtinst/guest.py > index ab6dcba..5824e87 100644 > --- a/virtinst/guest

[virt-tools-list] [PATCH] INSTALL: Add download links for requirements

2016-05-07 Thread Programmingkid
It is much easier and faster to give the user the prerequite software links rather than having them find the software themselves. This patch adds these links to the INSTALL document. Signed-off-by: John Arbuckle --- INSTALL | 7 +++ 1 file changed, 7 insertions(+) diff --git a/INSTALL b/INS

Re: [virt-tools-list] argparse and Python 2.6

2016-05-07 Thread Programmingkid
On May 7, 2016, at 7:31 PM, Cole Robinson wrote: > On 05/06/2016 11:51 AM, Programmingkid wrote: >> >> On May 6, 2016, at 7:52 AM, Cole Robinson wrote: >> >>> On 05/05/2016 10:49 PM, Programmingkid wrote: I was trying to run virt-clone.py, when I encountered an error. This file uses