Statistics
| Branch: | Revision:

root / defaults @ dcd7b382

History | View | Annotate | Download (2.1 kB)

1
# ganeti-instance-debootstrap defaults file
2

    
3
# if you want to change from the default of installing debian stable
4
# on the next instance, customize this file before the instance
5
# installation
6

    
7
# PROXY: if non-null, use this as an http-proxy in order to speed up
8
# non-cached installs; not that if not set, debootstrap might still
9
# use a system-wide proxy setting if it is exported in the
10
# ganeti-noded daemon environment
11
# PROXY="http://proxy.example.com:3128/"
12

    
13
# MIRROR: do not customize MIRROR if you want to be able to install
14
# both debian and ubuntu, since they have different defaults; or
15
# customize it before each install
16
# MIRROR="http://ftp.debian.org/debian"
17

    
18
# ARCH: define ARCH only if you want a different architecture than the
19
# current one; the known use case is to install a 32-bit instance on a
20
# 64-bit node; choose either "i386" or "amd64":
21
# ARCH="i386"
22

    
23
# SUITE: change suite to any of the ones supported by deboostrap; this
24
# could be unstable, etch, etc.:
25
# SUITE="lenny"
26

    
27
# EXTRA_PKGS: depending on the suite and architecture you are using, different
28
# extra packages are needed for different hypervisors. For example:
29
#
30
# Xen, for etch/lenny i386:
31
# EXTRA_PKGS="linux-image-xen-686,libc6-xen"
32
# Xen, for etch/lenny amd64:
33
# EXTRA_PKGS="linux-image-xen-amd64"
34
# KVM, for lenny i386:
35
# EXTRA_PKGS="acpi-support-base,console-tools,udev,linux-image-686"
36
# KVM, for lenny amd64:
37
# EXTRA_PKGS="acpi-support-base,console-tools,udev,linux-image-amd64"
38
#
39

    
40
# CUSTOMIZE_DIR: a directory containing scripts to customize the installation.
41
# The scripts are executed using run-parts
42
# By default /etc/ganeti/instance-debootstrap.d
43
# CUSTOMIZE_DIR="/etc/ganeti/instance-debootstrap.d"
44

    
45
# PARTITION_STYLE: whether and how the target device should be partitioned.
46
# Allowed values:
47
# 'none': just format the device, but don't partition it
48
# 'msdos': install an msdos partition table on the device, with a single
49
#          partition on it
50
# (more styles may be added in the future)
51
# The default is "msdos" from ganeti 2.0 onwards, but none if installing under
52
# Ganeti 1.2 (os api version 5)
53
# PARTITION_STYLE="none"