]> scripts.mit.edu Git - xen.git/blob - scripts-server
Make vcpus variable per-VM, so that AMD guests that can't live
[xen.git] / scripts-server
1 # Xen domain configuration file for scripts.mit.edu virtualized web servers
2 #
3 # usage, e.g.:
4 #   xm create scripts-server machine_name=bees-knees
5 #   xm create scripts-server machine_name=cats-whiskers
6 # name is the name of the server (as used in the LV volumes)
7 # mac5 is the fifth octet of the MAC address: ac:de:48:00:xx:01
8 # set install=fcX if you want to run a Fedora install, where X
9 # is the version of Fedora to install
10
11 vm_host = 0
12 vm_cpus = 1
13 vm_mem  = 2
14 vm_mac5 = 3
15 machines = { 'bees-knees'     : ['david-letterman',  2, 6144, 10],
16              'cats-whiskers'  : ['david-letterman',  2, 6144, 20],
17              'not-backward'   : ['david-letterman',  2, 2048, 30],
18              'busy-beaver'    : ['conan-obrien',     1, 3072, 40],
19              'pancake-bunny'  : ['conan-obrien',     1, 3072, 50],
20              'whole-enchilada': ['conan-obrien',     1, 3072, 60],
21              'real-mccoy'     : ['jay-leno',         1, 5120, 70],
22            }
23 vm = machines[machine_name]
24
25 mac5 = vm[vm_mac5]
26
27 if 'install' in locals():
28   # Get these files from a Fedora mirror, from a path like
29   # pub/fedora/linux/releases/test/11-Preview/Fedora/x86_64/os/isolinux/
30   kernel = "/root/%s-install/vmlinuz" % install
31   ramdisk = "/root/%s-install/initrd.img" % install
32   extra = "selinux=0"
33 elif 'type' in locals() and type == 'hvm':
34   kernel = "/usr/lib/xen/boot/hvmloader"
35   builder = "hvm"
36   vnc = 1
37   vncpassword = "foobar"
38 else:
39   # Fedora installs GRUB.
40   bootloader = "/usr/bin/pygrub"
41
42 vcpus = vm[vm_cpus]
43 if 'memory' not in locals(): memory = vm[vm_mem]
44 maxmem = 16384
45 name = machine_name
46 vg = vm[vm_host]
47 disk = [i % (vg, name) for i in ['phy:/dev/%s/%s-root,hda,w',
48                                  'phy:/dev/%s/%s-swap,hdb,w']]
49 vif = [i % mac5 for i in ['bridge=eth0, mac=ac:de:48:00:%s:01',
50                           'bridge=eth1, mac=ac:de:48:00:%s:02']]
51
52 if 'builder' not in locals() or builder != "hvm":
53   # https://bugzilla.redhat.com/show_bug.cgi?id=466681
54   # pygrub uses cached and eventually outdated grub.conf, kernel and initrd
55   file('/proc/sys/vm/drop_caches', 'w').write('1')