3f2071da347ddb46bcb76117c08a1bacfc711f9b
[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.13
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 # 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=3G
48
49
50 # override the swap size
51 SWAP_SIZE=1G
52
53
54 # whether or not to skip hardware requirement check
55 SKIP_HARDWARE_REQUIREMENT_CHECK=0
56
57
58 # minimum amount of memory needed for installer, in kb
59 MINIMUM_MEMORY=511000
60
61
62 # minimum block disk size in GB to be added to lvm.
63 # if any block devices are smaller than this, they are ignored.
64 MINIMUM_DISK_SIZE=5
65
66
67 # total minimum disk size in GB if all usable disks are below this
68 # size, the node cannot be installed
69 TOTAL_MINIMUM_DISK_SIZE=50
70
71
72 # set of langugase for install (used in /etc/rpm/macros)
73 INSTALL_LANGS=en_US
74
75
76 # number of auth failures before starting debug mode
77 NUM_AUTH_FAILURES_BEFORE_DEBUG=2