
Use VM_SSH_PORT from config.base instead of VM_BASE_SSH_PORT; remove references to VM_BASE_SSH_PORT. Make vm_install_base pass vm_name instead of VM_BASE_SSH_PORT to ssh_process_autostart (same as _vbox_boot_with_autostart). Have ssh_process_autostart actually make use of the argument it gets passed. Change-Id: I61434760554c38c0cc55995288c9d878a2c6a6bf
18 lines
440 B
Bash
18 lines
440 B
Bash
# Used by osbash.sh and guest scripts
|
|
|
|
: ${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 10000 MB, inherited by node VMs)
|
|
# BASE_DISK_SIZE=10000
|
|
|
|
# vim: set ai ts=4 sw=4 et ft=sh:
|