kitchen-cloudstack 0.20.1 → 0.20.2
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/lib/kitchen/driver/cloudstack.rb +1 -0
- data/lib/kitchen/driver/cloudstack_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: 4aea8ef2bb8e1861c84d98804c3d2dd42b755a37
|
4
|
+
data.tar.gz: 357e9002fd56121c69cbc2d639a6b184425f3a53
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a67eaf5ffe6050dcca689a666e016ec9fb33745bc2adefba8c6fe41fcb89612124b1f91f13c43b4c42f76bc31fa4b8bde46eb8d7296ad8fe774d85e6e9d9531e
|
7
|
+
data.tar.gz: 34a83850f480777e217bb956013f193fed9d707a5366befeacf2434fc3ced5a12303e04af30bbf8631a21932c4a97d036d8a3066e9007ab4a1232d6f3a3b6038
|
@@ -161,6 +161,7 @@ module Kitchen
|
|
161
161
|
debug("Connecting to : #{state[:hostname]} as #{config[:username]} using keypair #{keypair}.")
|
162
162
|
elsif (server_info.fetch('passwordenabled') == true)
|
163
163
|
password = server_info.fetch('password')
|
164
|
+
config[:password] = password
|
164
165
|
# Print out IP and password so you can record it if you want.
|
165
166
|
info("Password for #{config[:username]} at #{state[:hostname]} is #{password}")
|
166
167
|
|