From 002a83d7f752f230330ed010c68d7dc841994c52 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Mon, 30 Jul 2012 11:42:07 -0700 Subject: [PATCH] Update SSH config help to properly reflect "--host" usage. --- plugins/commands/ssh_config/command.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/commands/ssh_config/command.rb b/plugins/commands/ssh_config/command.rb index 7ca855ea5..60f88a9bb 100644 --- a/plugins/commands/ssh_config/command.rb +++ b/plugins/commands/ssh_config/command.rb @@ -11,11 +11,11 @@ module VagrantPlugins options = {} opts = OptionParser.new do |opts| - opts.banner = "Usage: vagrant ssh-config [vm-name] [-h name]" + opts.banner = "Usage: vagrant ssh-config [vm-name] [--host name]" opts.separator "" - opts.on("--host COMMAND", "Name the host for the config..") do |h| + opts.on("--host NAME", "Name the host for the config..") do |h| options[:host] = h end end