
There is no need for users to customize the name of the temporary VM used for building the base disk. This patch removes that option. Change-Id: I1e3eebf0c9f1098623d8f4ab50d938211cc78b6f
18 lines
428 B
Bash
18 lines
428 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
|
|
|
|
# vim: set ai ts=4 sw=4 et ft=sh:
|