kitchen-rax 0.18.0 → 0.19.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/kitchen/driver/rax.rb +2 -3
- data/lib/kitchen/driver/rax_version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1834f62e56f1e1350d57b432a1f71b22c04ff3e9
|
4
|
+
data.tar.gz: 258c9a36c0ee2ce9ea6cd58d2074ccc70645eb9d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 41e6beb71a7f6d1ec2d1ae05fb12daf8bb6a76a9e31974f2e78a4ac5a25739fd65c0301789c9531687901d161aeaca7d785c0a7545c14eaef6575d4cc3131915
|
7
|
+
data.tar.gz: 7d52992e3f8b8e6b01c433de3074f394c38623bb52ea68b24c5be5ea86d0c26c4b04708fb86acd41f68a261b4f0cccb43a10435b7cabc8d9d50ae7833e1682fc
|
data/lib/kitchen/driver/rax.rb
CHANGED
@@ -63,9 +63,8 @@ module Kitchen
|
|
63
63
|
server.wait_for { ready? }
|
64
64
|
info("The instance has finished building.")
|
65
65
|
rackconnect_check(server)
|
66
|
-
|
67
|
-
info("The instance is ready to accept connections on IP #{
|
68
|
-
state[:hostname] = config[:network] == "private" ? server.private_ip_address : server.public_ip_address
|
66
|
+
state[:hostname] = config[:network] == "private" ? server.private_ip_address : server.public_ip_address
|
67
|
+
info("The instance is ready to accept connections on IP #{state[:hostname]} with password #{server.password}.")
|
69
68
|
state[:password] = server.password
|
70
69
|
end
|
71
70
|
|