kitchen-ssh 0.0.4 → 0.0.5
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/kitchen/driver/ssh.rb +1 -1
- data/lib/kitchen/ssh/version.rb +1 -1
- metadata +3 -3
data/lib/kitchen/driver/ssh.rb
CHANGED
@@ -13,7 +13,7 @@ module Kitchen
|
|
13
13
|
state[:hostname] = config[:hostname]
|
14
14
|
state[:password] = config[:password]
|
15
15
|
print "Kitchen-ssh does not start your server '#{state[:hostname]}' but will look for an ssh connection with user '#{state[:username]}'"
|
16
|
-
wait_for_sshd(state[:hostname], state[:username])
|
16
|
+
wait_for_sshd(state[:hostname], state[:username], {:port => state[:port]})
|
17
17
|
print "Kitchen-ssh found ssh ready on host '#{state[:hostname]}' with user '#{state[:username]}'\n"
|
18
18
|
debug("ssh:create '#{state[:hostname]}'")
|
19
19
|
end
|
data/lib/kitchen/ssh/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: kitchen-ssh
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.5
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2014-
|
12
|
+
date: 2014-10-09 00:00:00.000000000 Z
|
13
13
|
dependencies: []
|
14
14
|
description: ! '== DESCRIPTION:
|
15
15
|
|
@@ -55,7 +55,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
55
55
|
version: '0'
|
56
56
|
requirements: []
|
57
57
|
rubyforge_project: ! '[none]'
|
58
|
-
rubygems_version: 1.8.
|
58
|
+
rubygems_version: 1.8.24
|
59
59
|
signing_key:
|
60
60
|
specification_version: 3
|
61
61
|
summary: ssh driver for test-kitchen for any running server with an ip address
|