152cc759aeb7ca474f0f39221e5316fe7fed0f3b
[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.2
8
9
10 # full url to which api server to contact
11 BOOT_API_SERVER=https://boot.planet-lab.org:443/PLCAPI/
12
13
14 # path to store temporary files during the install,
15 # do not include trailing slashes
16 TEMP_PATH=/tmp/mnt
17
18
19 # path to the system mount point
20 SYSIMG_PATH=/tmp/mnt/sysimg
21
22
23 # where the cacerts for the boot cd can be found
24 # currently, this must start with /mnt/cdrom
25 # which is hardcoded in the installer
26 CACERT_PATH=/mnt/cdrom/bootme/cacert
27
28
29 # the nonce the boot cd created, need to authenticate
30 # requests that are made to the boot server
31 NONCE_FILE=/tmp/nonce
32
33
34 # directory containing planetlab specific configuration
35 # files, like the http_proxy file
36 PLCONF_DIR=/etc/planetlab
37
38
39 # directory on the boot server containing
40 # support files and scripts
41 SUPPORT_FILE_DIR=/boot
42
43
44 # this sets the size of the root logical volume,
45 # after the root and swap has been created, remaining
46 # goes to the vserver partition
47 ROOT_SIZE=7G
48
49
50 # override the swap size
51 SWAP_SIZE=1G
52
53
54 # in raw disk mode, the size of /vservers
55 # if unset or -1, use the entire first disk
56 VSERVERS_SIZE=-1
57
58
59 # whether or not to skip hardware requirement check
60 SKIP_HARDWARE_REQUIREMENT_CHECK=0
61
62
63 # minimum amount of memory needed for installer, in kb
64 MINIMUM_MEMORY=511000
65
66
67 # minimum block disk size in GB to be added to lvm.
68 # if any block devices are smaller than this, they are ignored.
69 MINIMUM_DISK_SIZE=17
70
71
72 # total minimum disk size in GB if all usable disks are below this
73 # size, the node cannot be installed
74 TOTAL_MINIMUM_DISK_SIZE=50
75
76
77 # set of langugase for install (used in /etc/rpm/macros)
78 INSTALL_LANGS=en_US
79
80
81 # number of auth failures before starting debug mode
82 NUM_AUTH_FAILURES_BEFORE_DEBUG=2