-
Notifications
You must be signed in to change notification settings - Fork 0
/
config
51 lines (43 loc) · 1.86 KB
/
config
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
46
47
48
49
50
51
# Cloudy: An open LAMP benchmark suite
# Copyright (C) 2010 Adam Litke, IBM Corporation
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 as
# published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public
# License along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#
# Global configuration settings
#
# If you want to use a specific version of qemu, provide the full path to the
# binary here. Otherwise, a few well-known locations will be checked.
QEMU=/usr/libexec/qemu-kvm
# The location of the Fedora 12 mirror.
# Get a list here: http://mirrors.fedoraproject.org/publiclist
MIRROR=http://mirrors.xmission.com/fedora/releases/12/
#
## Instance Creation
## These variables affect the creation of cloudy VM instances
# Each VM is created with a telnet-style serial port. This variable
# controls the starting port number of the block that will be used.
SERIAL_PORT_BASE=3110
# Set the amount of memory that will be given to each VM
MEM=$(( 1 * 1024 * 1024 ))
# Set the starting MAC address to be used when creating VMs.
MAC_BASE="de:ad:be:ef:00:"
# The network can be configured in one of two ways:
# bridge: VMs will be connected directly to the LAN via the identified
# bridge. You must specify NET_BRIDGE
# XXX: Only bridge is supported at the moment.
# network: Connect the VMs to a defined libvirt network. You must specify
# the network name in NET_NETWORK
NETWORK_MODE=bridge
NET_BRIDGE=br0
#NET_NETWORK=