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