Skip to content

Commit

Permalink
Normalize vagrantfile.tpl
Browse files Browse the repository at this point in the history
  • Loading branch information
YungSang committed May 8, 2014
1 parent 2bc171e commit 389f53a
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions vagrantfile.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ Vagrant.configure("2") do |config|
config.ssh.username = "docker"

# Expose the Docker port
config.vm.network "forwarded_port", guest: 4243, host: 4243
config.vm.network :forwarded_port, guest: 4243, host: 4243

# Attach the b2d ISO so that it can boot
config.vm.provider "virtualbox" do |v|
config.vm.provider :virtualbox do |v|
v.check_guest_additions = false
v.customize "pre-boot", [
"storageattach", :id,
Expand All @@ -23,7 +23,7 @@ Vagrant.configure("2") do |config|
]
end

config.vm.provider "parallels" do |p|
config.vm.provider :parallels do |p|
p.check_guest_tools = false
p.customize "pre-boot", [
"set", :id,
Expand All @@ -34,5 +34,6 @@ Vagrant.configure("2") do |config|
p.customize "pre-boot", [
"set", :id,
"--device-bootorder", "cdrom0 hdd0"
] end
]
end
end

0 comments on commit 389f53a

Please sign in to comment.