forked from dreamcat4/ubuntu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.sh
32 lines (26 loc) · 880 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
#
# Arguments given to the download router.
: ${VERSION:="10.10"}
: ${DISTRO:="server"}
: ${RELEASE:="latest"}
# Architectures being built.
: ${ARCHS:="i386 amd64"}
# Hardcoded host information.
# : ${HOST:="devstructure"}
: ${HOST:="vagrant-ubuntu-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"}