mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-07 05:49:59 +00:00
4acab37f56
Extend tests to cover all SCSI controller types and document the new type. The lsisas1068 SCSI controller type was added in ESX 4.0. The VMX parser reports an error when this controller type is present. This makes virsh dumpxml fail for every domain that uses this controller type. This patch fixes this and adds lsisas1068 to the list of accepted SCSI controller types. Reported by Jonathan Kelley.
31 lines
901 B
XML
31 lines
901 B
XML
<domain type='vmware'>
|
|
<uuid>00000000-0000-0000-0000-000000000000</uuid>
|
|
<memory>32768</memory>
|
|
<currentMemory>32768</currentMemory>
|
|
<vcpu>1</vcpu>
|
|
<os>
|
|
<type arch='i686'>hvm</type>
|
|
</os>
|
|
<clock offset='utc'/>
|
|
<on_poweroff>destroy</on_poweroff>
|
|
<on_reboot>restart</on_reboot>
|
|
<on_crash>destroy</on_crash>
|
|
<devices>
|
|
<disk type='file' device='disk'>
|
|
<driver name='buslogic'/>
|
|
<source file='[datastore] directory/harddisk1.vmdk'/>
|
|
<target dev='sda' bus='scsi'/>
|
|
</disk>
|
|
<disk type='file' device='disk'>
|
|
<driver name='lsilogic'/>
|
|
<source file='[datastore] directory/harddisk2.vmdk'/>
|
|
<target dev='sdp' bus='scsi'/>
|
|
</disk>
|
|
<disk type='file' device='disk'>
|
|
<driver name='lsisas1068'/>
|
|
<source file='[datastore] directory/harddisk3.vmdk'/>
|
|
<target dev='sdae' bus='scsi'/>
|
|
</disk>
|
|
</devices>
|
|
</domain>
|