knife-eucalyptus 0.5.2 → 0.5.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/knife-eucalyptus.gemspec
CHANGED
data/lib/chef/knife/euca_base.rb
CHANGED
|
@@ -170,8 +170,6 @@ class Chef
|
|
|
170
170
|
|
|
171
171
|
print "\n#{ui.color("Waiting for server", :magenta)}"
|
|
172
172
|
|
|
173
|
-
display_name = server.dns_name
|
|
174
|
-
|
|
175
173
|
# wait for it to be ready to do stuff
|
|
176
174
|
server.wait_for { print "."; ready? }
|
|
177
175
|
|
|
@@ -182,7 +180,7 @@ class Chef
|
|
|
182
180
|
|
|
183
181
|
print "\n#{ui.color("Waiting for sshd", :magenta)}"
|
|
184
182
|
|
|
185
|
-
print(".") until tcp_test_ssh(
|
|
183
|
+
print(".") until tcp_test_ssh(server.dns_name) {
|
|
186
184
|
sleep @initial_sleep_delay ||= 20
|
|
187
185
|
puts("done")
|
|
188
186
|
}
|
metadata
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: knife-eucalyptus
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
4
|
prerelease:
|
|
5
|
-
version: 0.5.
|
|
5
|
+
version: 0.5.4
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
8
8
|
- Seth Chisamore
|
|
@@ -10,7 +10,7 @@ autorequire:
|
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
12
|
|
|
13
|
-
date: 2011-
|
|
13
|
+
date: 2011-08-15 00:00:00 -04:00
|
|
14
14
|
default_executable:
|
|
15
15
|
dependencies:
|
|
16
16
|
- !ruby/object:Gem::Dependency
|
|
@@ -24,28 +24,6 @@ dependencies:
|
|
|
24
24
|
version: 0.8.2
|
|
25
25
|
type: :runtime
|
|
26
26
|
version_requirements: *id001
|
|
27
|
-
- !ruby/object:Gem::Dependency
|
|
28
|
-
name: net-ssh
|
|
29
|
-
prerelease: false
|
|
30
|
-
requirement: &id002 !ruby/object:Gem::Requirement
|
|
31
|
-
none: false
|
|
32
|
-
requirements:
|
|
33
|
-
- - ~>
|
|
34
|
-
- !ruby/object:Gem::Version
|
|
35
|
-
version: 2.1.3
|
|
36
|
-
type: :runtime
|
|
37
|
-
version_requirements: *id002
|
|
38
|
-
- !ruby/object:Gem::Dependency
|
|
39
|
-
name: net-ssh-multi
|
|
40
|
-
prerelease: false
|
|
41
|
-
requirement: &id003 !ruby/object:Gem::Requirement
|
|
42
|
-
none: false
|
|
43
|
-
requirements:
|
|
44
|
-
- - ~>
|
|
45
|
-
- !ruby/object:Gem::Version
|
|
46
|
-
version: 1.0.1
|
|
47
|
-
type: :runtime
|
|
48
|
-
version_requirements: *id003
|
|
49
27
|
description: Eucalyptus Cloud Support for Chef's Knife Command
|
|
50
28
|
email:
|
|
51
29
|
- schisamo@opscode.com
|