Some extra example hooks
[ext/instance-debootstrap.git] / defaults
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/hooks
43 # CUSTOMIZE_DIR="/etc/ganeti/instance-debootstrap/hooks"
44
45 # GENERATE_CACHE: if set to yes (the default), create new cache files;
46 # any other value will disable the generation of cache files (but they
47 # will still be used if they exist)
48 GENERATE_CACHE="yes"
49
50 # CLEAN_CACHE: should be set to the number of days after which to
51 # clean the cache; the default is 14 (two weeks); to disable cache
52 # cleaning, set it to an empty value ("")
53 CLEAN_CACHE="14"
54
55 # PARTITION_STYLE: whether and how the target device should be partitioned.
56 # Allowed values:
57 # 'none': just format the device, but don't partition it
58 # 'msdos': install an msdos partition table on the device, with a single
59 #          partition on it
60 # (more styles may be added in the future)
61 # The default is "msdos" from ganeti 2.0 onwards, but none if installing under
62 # Ganeti 1.2 (os api version 5)
63 # PARTITION_STYLE="none"