vagrant/config/default.rb

36 lines
933 B
Ruby
Raw Normal View History

Vagrant.configure("2") do |config|
2010-02-02 06:14:40 +00:00
# default config goes here
config.vagrant.host = :detect
config.ssh.username = "vagrant"
config.ssh.guest_port = 22
config.ssh.max_tries = 100
2013-02-04 19:45:22 +00:00
config.ssh.timeout = 30
config.ssh.forward_agent = false
config.ssh.forward_x11 = false
config.ssh.shell = "bash -l"
2010-02-02 06:14:40 +00:00
config.vm.usable_port_range = (2200..2250)
2010-07-24 05:06:50 +00:00
config.vm.box_url = nil
config.vm.base_mac = nil
config.vm.graceful_halt_retry_count = 60
config.vm.graceful_halt_retry_interval = 1
config.vm.guest = :linux
2010-02-12 08:03:53 +00:00
# Share SSH locally by default
2013-03-02 00:31:54 +00:00
config.vm.network :forwarded_port,
host: 22,
guest: 2222,
id: "ssh",
auto_correct: true
# Share the root folder. This can then be overridden by
# other Vagrantfiles, if they wish.
2013-01-23 17:27:47 +00:00
config.vm.synced_folder(".", "/vagrant", :id => "vagrant-root")
config.nfs.map_uid = :auto
config.nfs.map_gid = :auto
config.package.name = 'package.box'
2010-02-12 08:03:53 +00:00
end