forked from jasherai/ubuntu
-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.sh
37 lines (29 loc) · 985 Bytes
/
config.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#
# Arguments given to the download router.
: ${VERSION:="10.10"}
: ${DISTRO:="server"}
: ${RELEASE:="latest"}
# Generated ISO Prefix
: ${ISOPREFIX:="vagrant"}
: ${LABEL:="vagrant"}
# Architectures being built.
: ${ARCHS:="i386 amd64"}
# Hardcoded host information.
: ${HOST:="maverick"}
: ${DOMAIN:="vagrantup.com"}
: ${ROOT_PASSWORD:="vagrant"}
: ${USERNAME:="vagrant"}
: ${PASSWORD:="vagrant"}
# SSH key to be authorized in virtual machines.
: ${PRIVATE_KEY:="vagrant"}
: ${PUBLIC_KEY:="vagrant.pub"}
# SSH command that will connect to the virtual machine. Add commands
# onto the end to do other tricks.
: ${SSH:="ssh \
-o UserKnownHostsFile=/dev/null \
-o StrictHostKeyChecking=no \
-l \"$USERNAME\" -i \"$PRIVATE_KEY\" -p 2222 localhost \
"}
# Fully-qualified pathname of VBoxGuestAdditions.iso.
#: ${VBOX_GUEST_ADDITIONS:="/Applications/VirtualBox.app/Contents/MacOS/VBoxGuestAdditions.iso"}
: ${VBOX_GUEST_ADDITIONS:="/usr/share/virtualbox/VBoxGuestAdditions.iso"}