mirror of
https://github.com/libvirt/libvirt.git
synced 2025-02-25 18:55:26 -06:00
Add https protocol support for cdrom disk
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'/>
</source>
</disk>
Signed-off-by: Aline Manera <alinefm@br.ibm.com>
This commit is contained in:
committed by
Daniel P. Berrange
parent
6bf4c77984
commit
d9dd981801
@@ -1509,6 +1509,14 @@
|
||||
<target dev='hdc' bus='ide' tray='open'/>
|
||||
<readonly/>
|
||||
</disk>
|
||||
<disk type='network' device='cdrom'>
|
||||
<driver name='qemu' type='raw'/>
|
||||
<source protocol="https" name="url_path">
|
||||
<host name="hostname" port="443"/>
|
||||
</source>
|
||||
<target dev='hdc' bus='ide' tray='open'/>
|
||||
<readonly/>
|
||||
</disk>
|
||||
<disk type='network' device='cdrom'>
|
||||
<driver name='qemu' type='raw'/>
|
||||
<source protocol="ftp" name="url_path">
|
||||
|
||||
@@ -1231,6 +1231,7 @@
|
||||
<value>gluster</value>
|
||||
<value>iscsi</value>
|
||||
<value>http</value>
|
||||
<value>https</value>
|
||||
<value>ftp</value>
|
||||
</choice>
|
||||
</attribute>
|
||||
|
||||
Reference in New Issue
Block a user