vagrant-orchestrate 0.5.2 → 0.5.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
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e792cb68c033c004720ce8142c97148c62d3d3b3
|
|
4
|
+
data.tar.gz: f923b195cde3ae62356f3acd78419f829859cb03
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a4a923bbb339a50c8660a98b47e0622890f6a5857514ad93e262d0de7215cc6edda47a11b0732aea3499aca8160044b19081e4b5feeb456be80e10cbdd016ee4
|
|
7
|
+
data.tar.gz: cc35054d935113db19f082744ac4a2d4eb720765ddcb55bde0dd098d021b1d2e98d3d7931a70750b9f50d48d7290b4e1b3117297e59a7243c90e10f99bc96d11
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
0.5.3 (May 13th, 2015)
|
|
2
|
+
|
|
3
|
+
- Fix a bug where the VAGRANT_ORCHESTRATE_USERNAME and VAGRANT_ORCHESTRATE_PASSWORD
|
|
4
|
+
environment variable overrides weren't being read properly. The bug was repro'd
|
|
5
|
+
on a Windows environment.
|
|
6
|
+
|
|
1
7
|
0.5.2 (May 8th, 2015)
|
|
2
8
|
|
|
3
9
|
- Add the `--no-provision` option to the `orchestrate push` command. Useful for
|
|
@@ -6,8 +6,14 @@ module VagrantPlugins
|
|
|
6
6
|
return unless config_creds
|
|
7
7
|
|
|
8
8
|
# Use environment variable overrides, or else what was provided in the config file
|
|
9
|
-
|
|
10
|
-
|
|
9
|
+
if ENV["VAGRANT_ORCHESTRATE_USERNAME"]
|
|
10
|
+
ui.info("Using VAGRANT_ORCHESTRATE_USERNAME environment variable override")
|
|
11
|
+
config_creds.username = ENV["VAGRANT_ORCHESTRATE_USERNAME"].dup
|
|
12
|
+
end
|
|
13
|
+
if ENV["VAGRANT_ORCHESTRATE_PASSWORD"]
|
|
14
|
+
ui.info("Using VAGRANT_ORCHESTRATE_PASSWORD environment variable override")
|
|
15
|
+
config_creds.password = ENV["VAGRANT_ORCHESTRATE_PASSWORD"].dup
|
|
16
|
+
end
|
|
11
17
|
|
|
12
18
|
# Use credentials file to any username or password that is still undiscovered
|
|
13
19
|
check_creds_file(config_creds, ui) unless config_creds.username && config_creds.password
|
|
@@ -162,7 +162,7 @@ module VagrantPlugins
|
|
|
162
162
|
creds.apply_creds(machine, username, password)
|
|
163
163
|
end
|
|
164
164
|
else
|
|
165
|
-
@env.ui.warn "Vagrant-orchestrate
|
|
165
|
+
@env.ui.warn "Vagrant-orchestrate did find any credentials. Continuing with default credentials."
|
|
166
166
|
end
|
|
167
167
|
end
|
|
168
168
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: vagrant-orchestrate
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.5.
|
|
4
|
+
version: 0.5.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Christopher Baldauf
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-05-
|
|
11
|
+
date: 2015-05-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|