~ubuntu-branches/ubuntu/maverick/testdrive/maverick

« back to all changes in this revision

Viewing changes to testdriverc

  • Committer: Bazaar Package Importer
  • Author(s): Dustin Kirkland
  • Date: 2010-02-06 22:38:58 UTC
  • mto: This revision was merged to the branch mainline in revision 8.
  • Revision ID: james.westby@ubuntu.com-20100206223858-mecq1gs7k3gaw2oy
Tags: upstream-1.19
ImportĀ upstreamĀ versionĀ 1.19

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# This is the global configuration file for the testdrive(1) utility.
 
2
# This file is python-syntax, sourced by testdrive
2
3
 
3
4
# CACHE is the directory to cache the ISOs and disk images
4
5
# Default: $HOME/.cache/testdrive
5
 
#CACHE=$HOME/.cache/testdrive
 
6
#CACHE = /path/to/your/cache
6
7
 
7
8
# ISO_URL is the complete path to the ISO
8
9
# Default: $PROTO://$MIRROR/$DIR/$CODENAME-$TYPE-$ARCH.iso
9
 
#ISO_URL=http://cdimage.ubuntu.com/ubuntu-netbook/daily-live/current/lucid-netbook-i386.iso
10
 
#ISO_URL=rsync://cdimage.ubuntu.com/cdimage/ubuntu-server/daily/current/lucid-server-amd64.iso
11
 
#ISO_URL=ftp://mirrors.kernel.org/ubuntu-releases/lucid/ubuntu-9.10-desktop-amd64.iso
 
10
#ISO_URL = "http://cdimage.ubuntu.com/ubuntu-netbook/daily-live/current/lucid-netbook-i386.iso"
 
11
#ISO_URL = "rsync://cdimage.ubuntu.com/cdimage/ubuntu-server/daily/current/lucid-server-amd64.iso"
 
12
#ISO_URL = "ftp://mirrors.kernel.org/ubuntu-releases/lucid/ubuntu-9.10-desktop-amd64.iso"
12
13
 
13
14
# VIRT is the type of hypervisor to use
14
 
# VIRT can be either 'kvm' or 'virtualbox'
15
 
#VIRT=kvm
16
 
#VIRT=virtualbox
 
15
# VIRT can be either 'kvm', 'virtualbox', or 'parallels'
 
16
#VIRT = "kvm"
 
17
#VIRT = "virtualbox"
17
18
 
18
19
# MEM is the amount of memory in MB to give to the VM guest
19
20
# Default: 512
20
 
#MEM=384
21
 
#MEM=512
22
 
#MEM=1024
 
21
#MEM = "384"
 
22
#MEM = "512"
 
23
#MEM = "1024"
23
24
 
24
25
# DISK_FILE is the full path to the disk image
25
26
# Default: $CACHE/$ISO.img
26
 
#DISK_FILE=$HOME/.cache/foo.img
 
27
#DISK_FILE = "/path/to/foo.img"
27
28
 
28
29
# DISK_SIZE is the size of the disk image
29
30
# Note that this will be a sparse, qcow2 file, so it should not actually
30
31
# take that much space on the filesystem.
31
32
# Default: 6G
32
 
#DISK_SIZE=4G
33
 
#DISK_SIZE=6G
34
 
#DISK_SIZE=10G
 
33
#DISK_SIZE = "4G"
 
34
#DISK_SIZE = "6G"
 
35
#DISK_SIZE = "10G"
35
36
 
36
37
# KVM_ARGS is a string of arbitrary KVM_ARGS to use when launching the VM
37
38
# Default: "-usb -usbdevice tablet -net nic,model=virtio -net user -soundhw es1370"
38
39
# See kvm(1) for a comprehensive list of arguments
39
 
#KVM_ARGS="-usb -usbdevice tablet -net nic,model=virtio -net user -soundhw es1370"
 
40
#KVM_ARGS = "-usb -usbdevice tablet -net nic,model=virtio -net user -soundhw es1370"