1
0
mirror of https://github.com/docker/cli.git synced 2026-01-19 21:41:31 +03:00

Fix indentation in Vagrantfile

Upstream-commit: b9149f45bf6bdef3b7025fe7c94a930696a4b4ab
Component: engine
This commit is contained in:
Manuel Meurer
2013-08-06 15:21:26 +02:00
parent 8b07d34a9b
commit f5e3a27080

View File

@@ -82,15 +82,15 @@ Vagrant::VERSION >= "1.1.0" and Vagrant.configure("2") do |config|
end
if !FORWARD_DOCKER_PORTS.nil?
Vagrant::VERSION < "1.1.0" and Vagrant::Config.run do |config|
(49000..49900).each do |port|
config.vm.forward_port port, port
end
Vagrant::VERSION < "1.1.0" and Vagrant::Config.run do |config|
(49000..49900).each do |port|
config.vm.forward_port port, port
end
end
Vagrant::VERSION >= "1.1.0" and Vagrant.configure("2") do |config|
(49000..49900).each do |port|
config.vm.network :forwarded_port, :host => port, :guest => port
end
Vagrant::VERSION >= "1.1.0" and Vagrant.configure("2") do |config|
(49000..49900).each do |port|
config.vm.network :forwarded_port, :host => port, :guest => port
end
end
end