Re: [libvirt] official libvirt mirror on github?

2015-05-22 Thread Aline Manera
On 22/05/2015 09:20, Cole Robinson wrote: On 05/22/2015 03:33 AM, Peter Krempa wrote: On Thu, May 21, 2015 at 21:34:25 -0400, Cole Robinson wrote: Hey all, Anyone considered setting up libvirt*.git mirrors on github? Given the popularity of github these days, IMO it's unfortunate we don't

[libvirt] [PATCH 2/3] Add ftps protocol support for cdrom disk

2013-09-16 Thread Aline Manera
From: Aline Manera alin...@br.ibm.com The ftps protocol is another protocol supported by qemu/KVM while specifying the cdrom ISO image. The xml should be as following: disk type='network' device='cdrom' source protocol='ftps' name='/url/path' host name='host.name' port='990

[libvirt] [PATCH 1/3] Add https protocol support for cdrom disk

2013-09-16 Thread Aline Manera
From: Aline Manera alin...@br.ibm.com The https protocol is also accepted by qemu/KVM when specifying the cdrom ISO image. The xml should be as following: disk type='network' device='cdrom' source protocol='https' name='/url/path' host name='host.name' port='443

[libvirt] [PATCH 0/3] Support https, ftps and tftp for cdrom URL

2013-09-16 Thread Aline Manera
From: Aline Manera alin...@br.ibm.com qemu/KVM also supports https, ftps and tftp URL for cdrom definition. With this patchset we will support all the protocols supported by qemu/KVM. Aline Manera (3): Add https protocol support for cdrom disk Add ftps protocol support for cdrom disk Add

[libvirt] [PATCH 3/3] Add tftp protocol support for cdrom disk

2013-09-16 Thread Aline Manera
From: Aline Manera alin...@br.ibm.com qemu/KVM also supports a tftp URL while specifying the cdrom ISO image. The xml should be as following: disk type='network' device='cdrom' source protocol='tftp' name='/url/path' host name='host.name' port='69'/ /source /disk

[libvirt] [PATCH 2/2] Add ftp protocol support for cdrom disk

2013-08-22 Thread Aline Manera
From: Aline Manera alin...@br.ibm.com The ftp protocol is already recognized by qemu/KVM so add this support to libvirt as well. The xml should be as following: disk type='network' device='cdrom' source protocol='ftp' name='/url/path' host name='host.name' port='21

[libvirt] [PATCH 0/2] Add http and ftp support for cdrom disk

2013-08-22 Thread Aline Manera
From: Aline Manera alin...@br.ibm.com Aline Manera (2): Add http protocol support for cdrom disk Add ftp protocol support for cdrom disk docs/formatdomain.html.in | 16 + docs/schemas/domaincommon.rng |2 ++ src/conf/domain_conf.c

[libvirt] [PATCH 1/2] Add http protocol support for cdrom disk

2013-08-22 Thread Aline Manera
From: Aline Manera alin...@br.ibm.com QEMU/KVM already allows a HTTP URL for the cdrom ISO image so add this support to libvirt as well. The xml should be as following: disk type='network' device='cdrom' source protocol='http' name='/url/path' host name='host.name' port='80

[libvirt] [PATCH] Allow a HTTP URL for cdrom ISO image

2013-08-21 Thread Aline Manera
From: Aline Manera alin...@br.ibm.com Hi all, qemu/KVM has support to iso streaming, allowing a HTTP UTL for cdrom iso image. I just added it to libvirt as well. Aline Manera (1): Allow a HTTP URL for cdrom ISO image src/conf/domain_conf.c |3 +- src/conf

[libvirt] [PATCH] Allow a HTTP URL for cdrom ISO image

2013-08-21 Thread Aline Manera
From: Aline Manera alin...@br.ibm.com QEMU/KVM already allows an HTTP URL for the cdrom ISO image so add this support to libvirt as well. The xml should be as following: disk type='network' device='cdrom' source protocol='http' name='/url/path' host name='host.name' port='80

Re: [libvirt] [PATCH] Allow a HTTP URL for cdrom ISO image

2013-08-21 Thread Aline Manera
On 08/21/2013 01:51 PM, Daniel P. Berrange wrote: On Wed, Aug 21, 2013 at 01:47:36PM -0300, Aline Manera wrote: From: Aline Manera alin...@br.ibm.com QEMU/KVM already allows an HTTP URL for the cdrom ISO image so add this support to libvirt as well. The xml should be as following: disk

[libvirt] [PATCH V2] Allow a HTTP URL for cdrom ISO image

2013-08-21 Thread Aline Manera
From: Aline Manera alin...@br.ibm.com V1 - V2: - Use -drive instead of legacy -cdrom option Aline Manera (1): Allow a HTTP URL for cdrom ISO image src/conf/domain_conf.c |3 +- src/conf/domain_conf.h |1 + src/qemu

[libvirt] [PATCH] Allow a HTTP URL for cdrom ISO image

2013-08-21 Thread Aline Manera
From: Aline Manera alin...@br.ibm.com QEMU/KVM already allows an HTTP URL for the cdrom ISO image so add this support to libvirt as well. The xml should be as following: disk type='network' device='cdrom' source protocol='http' name='/url/path' host name='host.name' port='80