Statistics
| Branch: | Revision:

root / defaults @ 84472880

History | View | Annotate | Download (1.7 kB)

1
# ganeti-instance-image defaults file
2

    
3
# CDINSTALL: Only setup disks for a cd based install
4
# Just setup the disks so that you can boot a machine up on a cd to create a
5
# new image
6
# CDINSTALL="no"
7

    
8
# SWAP: Create a swap partition
9
# SWAP=yes
10

    
11
# SWAP_SIZE: Manually set the size of the swap partition (in MB)
12
# If left empty, it will set the size equal to the memory for the instance.
13
# Make sure you have enough disk space for the swap partition!
14
# SWAP_SIZE=""
15

    
16
# FILESYSTEM: Set which filesystem to format the disks as. Currently only
17
# supports ext3 or ext4. Default is ext3.
18
# FILESYSTEM="ext3"
19

    
20
# KERNEL_ARGS: Add additional kernel boot arguments to an instance. This only
21
# works on instances booting a kernel from inside.
22
# KERNEL_ARGS=""
23

    
24
# IMAGE_NAME: Name of the image to use
25
# Generally you use the name of the image with the version of the OS included.
26
# Examples include:
27
#   centos-5.4 debian-4.0 fedora-12
28
# IMAGE_NAME=""
29

    
30
# IMAGE_TYPE: Either qemu disk images, tarball, or dump based images.
31
# Use either qemu, tarball, dump (default is dump)
32
# IMAGE_TYPE="dump"
33

    
34
# IMAGE_DIR: directory location for disk images
35
# ( default is @localstatedir@/cache/ganeti-instance-image )
36
# IMAGE_DIR=""
37

    
38
# OVERLAY: overlay of files to be copied to the instance after OS installation.
39
# This is useful for situations where you want to copy instance specific
40
# configs such as resolv.conf.
41
# OVERLAY=""
42

    
43
# ARCH: Define the ARCH of the image to use
44
# Use either x86 or x86_64
45
# ARCH=""
46

    
47
# CUSTOMIZE_DIR: a directory containing scripts to customize the installation.
48
# The scripts are executed using run-parts
49
# By default /etc/ganeti/instance-image/hooks
50
# CUSTOMIZE_DIR="/etc/ganeti/instance-image/hooks"
51

    
52
# IMAGE_DEBUG: turn on debugging output for the scripts
53
# IMAGE_DEBUG=0