Comment 2 for bug 1023250

Revision history for this message
Yun Mao (yunmao) wrote :

An example of the wrong partial config:
  <devices>
    <disk type="file" device="cdrom">
      <driver type="qcow2" cache="none"/>
      <source file="/opt/stack/nova/instances/instance-0000003a/disk"/>
      <target bus="ide" dev="vda"/>
    </disk>
    <disk type="file" device="cdrom">
      <driver type="qcow2" cache="none"/>
      <source file="/opt/stack/nova/instances/instance-0000003a/disk.local"/>
      <target bus="virtio" dev="vdb"/>
    </disk>

The right config:
  <devices>
    <disk type="file" device="cdrom">
      <driver type="qcow2" cache="none"/>
      <source file="/opt/stack/nova/instances/instance-0000003a/disk"/>
      <target bus="ide" dev="vda"/>
    </disk>
    <disk type="file" device="disk">
      <driver type="qcow2" cache="none"/>
      <source file="/opt/stack/nova/instances/instance-0000003a/disk.local"/>
      <target bus="virtio" dev="vdb"/>
    </disk>