From 27372ef3135bfcad8ab18e066df32881760f9859 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Sat, 7 Jan 2012 21:56:14 -0800 Subject: [PATCH] Namespace ssh-config template --- lib/vagrant/command/ssh_config.rb | 3 ++- templates/{ssh_config.erb => commands/ssh_config/config.erb} | 0 2 files changed, 2 insertions(+), 1 deletion(-) rename templates/{ssh_config.erb => commands/ssh_config/config.erb} (100%) diff --git a/lib/vagrant/command/ssh_config.rb b/lib/vagrant/command/ssh_config.rb index a63bd812d..fa73d1130 100644 --- a/lib/vagrant/command/ssh_config.rb +++ b/lib/vagrant/command/ssh_config.rb @@ -35,7 +35,8 @@ module Vagrant } # Render the template and output directly to STDOUT - $stdout.puts(Util::TemplateRenderer.render("ssh_config", variables)) + template = "commands/ssh_config/config" + $stdout.puts(Util::TemplateRenderer.render(template, variables)) end end end diff --git a/templates/ssh_config.erb b/templates/commands/ssh_config/config.erb similarity index 100% rename from templates/ssh_config.erb rename to templates/commands/ssh_config/config.erb