ssh-config -h shows help [GH-793]

This commit is contained in:
Mitchell Hashimoto 2012-03-11 10:38:23 -07:00
parent b38083fb9b
commit 07fa6d5dc4
2 changed files with 3 additions and 1 deletions

View File

@ -15,6 +15,8 @@
- The `--no-provision` and `--provision-with` flags are available to - The `--no-provision` and `--provision-with` flags are available to
`vagrant reload` now. `vagrant reload` now.
- `:openbsd` guest which supports only halting at the moment. [GH-773] - `:openbsd` guest which supports only halting at the moment. [GH-773]
- `ssh-config -h` now shows help, instead of assuming a host is being
specified. For host, you can still use `--host`. [GH-793]
## 1.0.0 (March 6, 2012) ## 1.0.0 (March 6, 2012)

View File

@ -11,7 +11,7 @@ module Vagrant
opts.separator "" opts.separator ""
opts.on("-h", "--host COMMAND", "Name the host for the config..") do |h| opts.on("--host COMMAND", "Name the host for the config..") do |h|
options[:host] = h options[:host] = h
end end
end end