~ubuntu-branches/ubuntu/quantal/nova/quantal-proposed

« back to all changes in this revision

Viewing changes to nova/virt/libvirt.rescue.xen.xml.template

  • Committer: Bazaar Package Importer
  • Author(s): Chuck Short
  • Date: 2011-01-21 11:48:06 UTC
  • mto: This revision was merged to the branch mainline in revision 9.
  • Revision ID: james.westby@ubuntu.com-20110121114806-v8fvnnl6az4m4ohv
Tags: upstream-2011.1~bzr597
ImportĀ upstreamĀ versionĀ 2011.1~bzr597

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<domain type='%(type)s'>
2
 
    <name>%(name)s</name>
3
 
    <os>
4
 
        <type>linux</type>
5
 
        <kernel>%(basepath)s/kernel</kernel>
6
 
        <initrd>%(basepath)s/ramdisk</initrd>
7
 
        <root>/dev/xvda1</root>
8
 
        <cmdline>ro</cmdline>
9
 
    </os>
10
 
    <features>
11
 
        <acpi/>
12
 
    </features>
13
 
    <memory>%(memory_kb)s</memory>
14
 
    <vcpu>%(vcpus)s</vcpu>
15
 
    <devices>
16
 
        <disk type='file'>
17
 
            <source file='%(basepath)s/rescue-disk'/>
18
 
            <target dev='sda' />
19
 
        </disk>
20
 
        <disk type='file'>
21
 
            <source file='%(basepath)s/disk'/>
22
 
            <target dev='sdb' />
23
 
        </disk>
24
 
        <interface type='bridge'>
25
 
            <source bridge='%(bridge_name)s'/>
26
 
            <mac address='%(mac_address)s'/>
27
 
        </interface>
28
 
        <console type="file">
29
 
            <source path='%(basepath)s/console.log'/>
30
 
            <target port='1'/>
31
 
        </console>
32
 
    </devices>
33
 
</domain>
34