Skip to content

Commit

Permalink
* version bump to 0.1.3
Browse files Browse the repository at this point in the history
* fix --no-host-key-verify option for ruby 1.9
  • Loading branch information
rubiojr committed Nov 24, 2011
1 parent b6e7b4a commit 072e1cf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion lib/chef/knife/esx_vm_create.rb
Expand Up @@ -111,7 +111,8 @@ class EsxVmCreate < Knife
:long => "--no-host-key-verify",
:description => "Disable host key verification",
:boolean => true,
:default => false
:default => false,
:proc => Proc.new { true }

def tcp_test_ssh(hostname)
tcp_socket = TCPSocket.new(hostname, 22)
Expand Down
2 changes: 1 addition & 1 deletion lib/knife-esx/version.rb
@@ -1,6 +1,6 @@
module Knife
module ESX
VERSION = "0.1.2"
VERSION = "0.1.3"
MAJOR, MINOR, TINY = VERSION.split('.')
end
end

0 comments on commit 072e1cf

Please sign in to comment.