rather than code in the name of the boot server into the boot manager
[bootmanager.git] / source / configuration
1 # this file contains a list of variables
2 # to import to the INSTALL_STORE before
3 # any of the steps run.
4
5
6 # the current version of the bootmanager
7 VERSION=3.1.8
8
9
10 # path to store temporary files during the install,
11 # do not include trailing slashes
12 TEMP_PATH=/mnt/tmp
13
14
15 # path to the system mount point
16 SYSIMG_PATH=/mnt/tmp/sysimg
17
18
19 # where the cacerts for the boot cd can be found
20 # currently, this must start with /mnt/cdrom
21 # which is hardcoded in the installer
22 CACERT_PATH=/mnt/cdrom/bootme/cacert
23
24
25 # the nonce the boot cd created, need to authenticate
26 # requests that are made to the boot server
27 NONCE_FILE=/tmp/nonce
28
29
30 # directory containing planetlab specific configuration
31 # files, like the http_proxy file
32 PLCONF_DIR=/etc/planetlab
33
34
35 # directory on the boot server containing
36 # support files and scripts
37 SUPPORT_FILE_DIR=/boot
38
39
40 # this sets the size of the root logical volume,
41 # after the root and swap has been created, remaining
42 # goes to the vserver partition
43 ROOT_SIZE=3G
44
45
46 # override the swap size
47 SWAP_SIZE=1G
48
49
50 # whether or not to skip hardware requirement check
51 SKIP_HARDWARE_REQUIREMENT_CHECK=0
52
53
54 # minimum amount of memory needed for installer, in kb
55 MINIMUM_MEMORY=511000
56
57
58 # minimum block disk size in GB to be added to lvm.
59 # if any block devices are smaller than this, they are ignored.
60 MINIMUM_DISK_SIZE=5
61
62
63 # total minimum disk size in GB if all usable disks are below this
64 # size, the node cannot be installed
65 TOTAL_MINIMUM_DISK_SIZE=50
66
67
68 # set of langugase for install (used in /etc/rpm/macros)
69 INSTALL_LANGS=en_US
70
71
72 # number of auth failures before starting debug mode
73 NUM_AUTH_FAILURES_BEFORE_DEBUG=2