vagrant-orchestrate 0.7.1 → 0.7.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/.rubocop.yml +0 -3
- data/CHANGELOG.md +5 -0
- data/lib/vagrant-orchestrate/command/push.rb +2 -2
- data/lib/vagrant-orchestrate/repo_status.rb +2 -3
- data/lib/vagrant-orchestrate/version.rb +1 -1
- data/spec/vagrant-orchestrate/command/root_spec.rb +1 -1
- data/templates/vagrant/Vagrantfile.erb +1 -0
- 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: d5f5be85b659c5c5022a04470ec6974461ba5706
|
|
4
|
+
data.tar.gz: adba283f307e946d40b4ce61d941d406a42a091f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9c66765c8ff0fd957b4b2dc9357c2e40779b3a5dbb271402e5b639b9647db633ff7a386feffae7a59ec06b41d7c94eae356810fd95735d23c0e587ca9db4852f
|
|
7
|
+
data.tar.gz: 1891a632f207db38a00f42e8bdb80f4ded5279012c0ede8750b5467d4c92725478fdb2dbe11d5bb6f1c26b8f1c175a2d7167588852c16c280391772d6ddab374
|
data/.rubocop.yml
CHANGED
data/CHANGELOG.md
CHANGED
|
@@ -131,7 +131,7 @@ module VagrantPlugins
|
|
|
131
131
|
groups
|
|
132
132
|
end
|
|
133
133
|
|
|
134
|
-
# rubocop:disable
|
|
134
|
+
# rubocop:disable MethodLength, Metrics/CyclomaticComplexity, Metrics/PerceivedComplexity
|
|
135
135
|
def deploy(options, *groups)
|
|
136
136
|
groups.select! { |g| g.size > 0 }
|
|
137
137
|
groups.each_with_index do |machines, index|
|
|
@@ -158,7 +158,7 @@ module VagrantPlugins
|
|
|
158
158
|
end
|
|
159
159
|
end
|
|
160
160
|
end
|
|
161
|
-
# rubocop:enable
|
|
161
|
+
# rubocop:enable MethodLength, Metrics/CyclomaticComplexity, Metrics/PerceivedComplexity
|
|
162
162
|
|
|
163
163
|
def prompt_for_continue
|
|
164
164
|
result = @env.ui.ask("Deployment paused for manual review. Would you like to continue? (y/n) ")
|
|
@@ -7,9 +7,8 @@ module VagrantPlugins
|
|
|
7
7
|
attr_accessor :local_path
|
|
8
8
|
|
|
9
9
|
def initialize(root_path)
|
|
10
|
-
@last_sync = Time.now.utc
|
|
11
|
-
@local_path = nil
|
|
12
|
-
# The fully qualified path to the root of the repo
|
|
10
|
+
@last_sync = Time.now.utc # Managed servers could be in different timezones
|
|
11
|
+
@local_path = nil # The fully qualified path to the root of the repo
|
|
13
12
|
@root_path = root_path
|
|
14
13
|
end
|
|
15
14
|
|
|
@@ -51,6 +51,7 @@ Vagrant.configure("2") do |config|
|
|
|
51
51
|
<% end -%>
|
|
52
52
|
<% if communicator == "winrm" -%>
|
|
53
53
|
config.vm.communicator = "<%= communicator %>"
|
|
54
|
+
config.vm.guest = :windows
|
|
54
55
|
config.winrm.username = "<%= winrm_username %>"
|
|
55
56
|
config.winrm.password = "<%= winrm_password %>"
|
|
56
57
|
<% end -%>
|
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.7.
|
|
4
|
+
version: 0.7.2
|
|
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-
|
|
11
|
+
date: 2015-09-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: deployment-tracker-client
|