kitchen-yansible-pusher 0.1.2 → 0.1.3
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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9c2b21b1b1384736127c873d59e0466836e57f8fac7847040048be7a6bb9d7c1
|
4
|
+
data.tar.gz: c89fc1163a3674d93201650ef24f99c2e8b33edc6ad81cc93a7f299422c5531b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b7d78b75e17df46a1767a184b7122c42dbf9b27b1edb4498588d3c86d6a695c4aed06d2cea7e65f59d2dbbd02b6bbf9a2d065806424a22be2b53b2a879c9e7d1
|
7
|
+
data.tar.gz: 3408cc60e8ebdc4f913ec4e20999fd9049d2ddd00ec1788b656482599d64f05f384fe59cdacc11fc7eb4215a5647a6d7abe69d240819b95b9b605813c274a34c
|
@@ -148,10 +148,12 @@ module Kitchen
|
|
148
148
|
state = instance.transport.instance_variable_get(:@connection_options)
|
149
149
|
cmd << "--private-key #{state[:keys][0]}"
|
150
150
|
end
|
151
|
+
cmd
|
151
152
|
end
|
152
153
|
|
153
154
|
def ansible_use_vault_password_file(cmd)
|
154
|
-
cmd << "--vault-password-file #{config[:vault_password_file]}"
|
155
|
+
cmd << "--vault-password-file #{config[:vault_password_file]}" unless config[:vault_password_file].nil?
|
156
|
+
cmd
|
155
157
|
end
|
156
158
|
|
157
159
|
def ansible_verbosity(cmd)
|