From 32f456089cbafa8a594c390e9d9eaa7b779494c9 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Wed, 19 Jan 2011 15:48:49 -0800 Subject: [PATCH] ssh-config host is now 127.0.0.1 instead of localhost --- CHANGELOG.md | 1 + templates/ssh_config.erb | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d3efcc03d..836d6faa4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -33,6 +33,7 @@ change, its unnecessary. - Puppet supports `module_path` configuration to mount local modules directory as a shared folder and configure puppet with it. [GH-270] + - `ssh-config` now outputs `127.0.0.1` as the host instead of `localhost`. ## 0.6.9 (December 21, 2010) diff --git a/templates/ssh_config.erb b/templates/ssh_config.erb index 060c5bb1b..6c9325ef1 100644 --- a/templates/ssh_config.erb +++ b/templates/ssh_config.erb @@ -1,5 +1,5 @@ Host <%= host_key %> - HostName localhost + HostName 127.0.0.1 User <%= ssh_user %> Port <%= ssh_port %> UserKnownHostsFile /dev/null