Change default SSH host to 127.0.0.1 instead of localhost

This commit is contained in:
Mitchell Hashimoto 2011-01-22 22:51:29 -08:00
parent 2821dcee7f
commit c0902a4ef9
2 changed files with 3 additions and 1 deletions

View File

@ -8,6 +8,8 @@
- Make SSH commands which use sudo compatible with sudo < 1.7.0. [GH-278]
- Fix broken puppet server provisioner which called a nonexistent
method.
- Default SSH host changed from `localhost` to `127.0.0.1` since
`localhost` is not always loopback.
## 0.7.0 (January 19, 2011)

View File

@ -4,7 +4,7 @@ Vagrant::Config.run do |config|
config.vagrant.host = :detect
config.ssh.username = "vagrant"
config.ssh.host = "localhost"
config.ssh.host = "127.0.0.1"
config.ssh.forwarded_port_key = "ssh"
config.ssh.max_tries = 10
config.ssh.timeout = 30