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