various source file cleanup, unused configuration vars removed, move
[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
9
10 # full url to which api server to contact
11 BOOT_API_SERVER=https://www.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=/mnt/tmp
17
18
19 # path to the system mount point
20 SYSIMG_PATH=/mnt/tmp/sysimg
21
22
23 # the nonce the boot cd created, need to authenticate
24 # requests that are made to the boot server
25 NONCE_FILE=/tmp/nonce
26
27
28 # directory containing planetlab specific configuration
29 # files, like the http_proxy file
30 PLCONF_DIR=/etc/planetlab
31
32
33 # directory on the boot server containing
34 # support files and scripts
35 SUPPORT_FILE_DIR=/boot
36
37
38 # this sets the size of the root logical volume,
39 # after the root and swap has been created, remaining
40 # goes to the vserver partition
41 ROOT_SIZE=3G
42
43
44 # override the swap size
45 SWAP_SIZE=1G
46
47
48 # whether or not to skip hardware requirement check
49 SKIP_HARDWARE_REQUIREMENT_CHECK=0
50
51
52 # minimum amount of memory needed for installer, in kb
53 MINIMUM_MEMORY=511000
54
55
56 # minimum block disk size in GB to be added to lvm.
57 # if any block devices are smaller than this, they are ignored.
58 MINIMUM_DISK_SIZE=5
59
60
61 # total minimum disk size in GB if all usable disks are below this
62 # size, the node cannot be installed
63 TOTAL_MINIMUM_DISK_SIZE=50
64
65
66 # set of langugase for install (used in /etc/rpm/macros)
67 INSTALL_LANGS=en_US
68
69
70 # number of auth failures before starting debug mode
71 NUM_AUTH_FAILURES_BEFORE_DEBUG=2