File: test_modify_libvirt_xml_diskimage_too_many_drivers.xml

package info (click to toggle)
oz 0.17.0-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,120 kB
  • sloc: python: 7,875; xml: 654; perl: 610; makefile: 49; sh: 29
file content (45 lines) | stat: -rw-r--r-- 1,100 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?xml version="1.0"?>
<domain type="qemu">
  <name>tester</name>
  <memory>1048576</memory>
  <currentMemory>1048576</currentMemory>
  <uuid>%s</uuid>
  <clock offset="utc"/>
  <vcpu>1</vcpu>
  <features>
    <acpi/>
    <apic/>
    <pae/>
  </features>
  <os>
    <type>hvm</type>
    <boot dev="hd"/>
  </os>
  <on_poweroff>destroy</on_poweroff>
  <on_reboot>destroy</on_reboot>
  <on_crash>destroy</on_crash>
  <devices>
    <graphics port="-1" type="vnc"/>
    <interface type="bridge">
      <source bridge="%s"/>
      <target dev="vnet7"/>
      <mac address="52:54:00:04:cc:a6"/>
      <model type="virtio"/>
    </interface>
    <input bus="ps2" type="mouse"/>
    <serial type="pty">
      <target port="0"/>
    </serial>
    <serial type="tcp">
      <source mode="bind" host="127.0.0.1" service="%s"/>
      <protocol type="raw"/>
      <target port="1"/>
    </serial>
    <disk device="disk" type="file">
      <target dev="vda" bus="virtio"/>
      <source file="%s"/>
      <driver name="qemu" type="raw"/>
      <driver name="qemu" type="qcow2"/>
    </disk>
  </devices>
</domain>