Change default SSH host to 127.0.0.1 instead of localhost
This commit is contained in:
parent
2821dcee7f
commit
c0902a4ef9
|
@ -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)
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue