
A new configuration option, BASE_DISK_SIZE, allows users to change the size of the disk available to the node VMs. Because the disks grow dynamically, the cost of larger disks is limited in practice to additional time spent in zero_empty.sh. Change-Id: I47a72a08cfa51ba6c04306b64e04c4c2600975dd
21 lines
522 B
Bash
21 lines
522 B
Bash
# Used by osbash.sh and guest scripts
|
|
|
|
# Port used for ssh forwarding when building base disk
|
|
: ${VM_BASE_SSH_PORT:=2229}
|
|
|
|
: ${OSBASH_LIB_DIR:=$LIB_DIR/osbash}
|
|
: ${OSBASH_SCRIPTS_DIR:=$SCRIPTS_DIR/osbash}
|
|
|
|
: ${TEMPLATE_DIR:=$LIB_DIR/osbash/templates}
|
|
|
|
# Name of VirtualBox shared folder
|
|
: ${SHARE_NAME:=osbash}
|
|
|
|
# Note: shell user name and password are set in preseed.cfg
|
|
VM_SHELL_USER=osbash
|
|
|
|
# Override disk size in MB (default is 8000 MB, inherited by node VMs)
|
|
# BASE_DISK_SIZE=8000
|
|
|
|
# vim: set ai ts=4 sw=4 et ft=sh:
|