knife-brightbox 0.6.0 → 0.6.1
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.
- checksums.yaml +4 -4
- data/CHANGELOG +5 -0
- data/lib/chef/knife/brightbox_server_create.rb +2 -2
- data/lib/chef/knife/brightbox_server_delete.rb +1 -1
- data/lib/knife-brightbox/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7e536cd4a2961dcf7f98dd78a8f0f3caaf378ab0
|
|
4
|
+
data.tar.gz: c65a1c20f3cec6ed259b544da1d29e6d096993e9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 11693992515a3dd0969e55267732150bb3ceb859393fdf3e6ee08538e8c15bf01e225992e1bfb86dbca06b2b58c6549d255c9ad1a8c2e2e6b65a433e41e45972
|
|
7
|
+
data.tar.gz: ca3faa0fcba12831c24cd6eb46f56658560d1a1313808815abe610a1f873caac7071632f6376ca20e13cb84dc1d1c56710932aa5c26c25dad0bd4eb048ae627c
|
data/CHANGELOG
CHANGED
|
@@ -180,7 +180,7 @@ class Chef
|
|
|
180
180
|
print "\n#{ui.color("Waiting server", :magenta)}"
|
|
181
181
|
|
|
182
182
|
# wait for it to be ready to do stuff
|
|
183
|
-
server.wait_for { print ".";
|
|
183
|
+
server.wait_for { print "."; service.servers.get(server.id).ready? }
|
|
184
184
|
|
|
185
185
|
puts("\n")
|
|
186
186
|
|
|
@@ -189,7 +189,7 @@ class Chef
|
|
|
189
189
|
cip = connection.cloud_ips.get ip['id']
|
|
190
190
|
destination_id = server.interfaces.last['id']
|
|
191
191
|
cip.map destination_id
|
|
192
|
-
server.wait_for { print ".";
|
|
192
|
+
server.wait_for { print "."; service.cloud_ips.get(ip['id']).mapped? }
|
|
193
193
|
puts " done\n"
|
|
194
194
|
|
|
195
195
|
server = connection.servers.get(server.id)
|
|
@@ -89,7 +89,7 @@ class Chef
|
|
|
89
89
|
|
|
90
90
|
server.cloud_ips.each do |cid|
|
|
91
91
|
cid = connection.cloud_ips.get(cid["id"])
|
|
92
|
-
print "#{ui.color("WARNING:
|
|
92
|
+
print "#{ui.color("WARNING:", :yellow)} Deleted cloud ip (#{cid.id})"
|
|
93
93
|
print(".") until wait_for_release { cid.destroy; puts("done!") }
|
|
94
94
|
end
|
|
95
95
|
else
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: knife-brightbox
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.6.
|
|
4
|
+
version: 0.6.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sergio Rubio
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-
|
|
11
|
+
date: 2014-07-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: fog
|