source: trunk/packages/invirt-xen-config/invirt-database @ 2367

Last change on this file since 2367 was 2367, checked in by broder, 15 years ago

In invirt-xen-config:

  • Some of the autoinstallers want a lot of RAM. Give it to them.
File size: 2.6 KB
Line 
1# -*- mode: python; -*-
2from invirt.database import models, connect
3from invirt.config import structs as config
4import re
5
6connect()
7prefix = "d_"
8
9# 'machine_name', and optionally 'cdrom_image', should get passed in
10# from the xm create call
11
12def check(b):
13    if not b:
14        import sys
15        sys.exit(1)
16
17machine = models.Machine.query().filter_by(name=machine_name).one()
18check(machine is not None)
19machine_type = machine.type
20cdrom = None
21if 'cdrom_image' in locals():
22    cdrom = models.CDROM.query().filter_by(cdrom_id=cdrom_image).one()
23    check(cdrom is not None)
24
25memory = machine.memory
26maxmem = '2048'
27check(re.match('^[A-Za-z0-9][A-Za-z0-9._-]*$', machine.name))
28name = prefix + machine.name
29check(re.match('^[0-9a-f-]+$', machine.uuid))
30uuid = machine.uuid
31
32vcpus = machine.cpus
33
34diskioemu = ""
35viftype = ""
36
37pae = machine_type.pae
38acpi = machine_type.acpi
39apic = machine_type.apic
40
41vif = []
42
43disk = []
44
45if machine_type.hvm:
46    codepath = 'hvm'
47else:
48    codepath = 'paravm'
49
50if 'installer_options' in locals(): #Installer
51    disk.append('phy:/dev/xenvg/s_install_hda,hdb,r')
52
53    import os
54    release = os.uname()[2]
55    kernel = '/boot/vmlinuz-%s' % release
56    ramdisk = '/boot/initrd.img-%s' % release
57
58    if not machine.nics:
59        raise RuntimeError('You must have a nic to autoinstall')
60    n = machine.nics[0]
61    extra = 'ro noresume'
62    extra += (' ip=%s::%s:%s:%s:eth0:off'
63         % (n.ip, config.dhcp.gateway, config.dhcp.netmask, machine.name))
64    extra += ' %s' % installer_options
65    root = '/dev/hdb1'
66    codepath = None
67
68    memory = max(memory, 512)
69elif cdrom is not None:
70    disk.append('phy:/dev/xenvg/image_' + cdrom.cdrom_id + ',hdc:cdrom,r')
71    boot = 'd'
72    codepath = 'hvm'
73
74if codepath == 'hvm':
75    ioemu = "ioemu:"
76    viftype = "type=ioemu, "
77    kernel = '/usr/lib/xen/boot/hvmloader'
78    builder = 'hvm'
79    vnc = 1
80    vncpasswd = 'moocow'
81    device_model = '/usr/sbin/qemu-dm-invirt'
82    serial = "pty"
83elif codepath == 'paravm':
84    bootloader = '/usr/bin/pygrub'
85
86
87for n in machine.nics:
88    check(re.match('^[0-9a-fA-F:]+$', n.mac_addr) and re.match('^[0-9.]*$', n.ip))
89    d = ('%smac=%s, ip=%s, script=vif-invirtroute netdev=%s'
90         % (viftype, n.mac_addr, n.ip, config.xen.network.iface))
91    vif.append(d)
92
93for d in machine.disks:
94    check(re.match('^[A-Za-z0-9]+$', d.guest_device_name))
95    device = '/dev/xenvg/' + prefix + machine.name + '_' + d.guest_device_name
96    dspec = 'phy:%s,%s%s,w' % (device, diskioemu, d.guest_device_name)
97    disk.append(dspec)
98
99usbdevice = 'tablet'
100
101on_poweroff = 'destroy'
102on_reboot = 'restart'
103on_crash = 'destroy'
104if machine.autorestart:
105    on_crash = 'restart'
Note: See TracBrowser for help on using the repository browser.