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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e66388ead479e9494dd499cd131f4c8b751d53b3
4
- data.tar.gz: 7c01bb4afcaac03bded62480d7db70af52ec2347
3
+ metadata.gz: d5f5be85b659c5c5022a04470ec6974461ba5706
4
+ data.tar.gz: adba283f307e946d40b4ce61d941d406a42a091f
5
5
  SHA512:
6
- metadata.gz: 80cd0c04c6a694b7eca4285a9b50f8f543bbb0a791ac62739ac2b9f5bcce06a3b2b828256eb09e0a0b8f8b0d55b69a4f82d9c0660988f80edaa9c0f2d63724b9
7
- data.tar.gz: 2b34f8ff6fe6c18dbce32c92f745be583005cfebf8a0b4fd76098f8430b504a9754973167f214b9248a1692ecb11832f9b6486ec013909168a89a4cc765bb0f3
6
+ metadata.gz: 9c66765c8ff0fd957b4b2dc9357c2e40779b3a5dbb271402e5b639b9647db633ff7a386feffae7a59ec06b41d7c94eae356810fd95735d23c0e587ca9db4852f
7
+ data.tar.gz: 1891a632f207db38a00f42e8bdb80f4ded5279012c0ede8750b5467d4c92725478fdb2dbe11d5bb6f1c26b8f1c175a2d7167588852c16c280391772d6ddab374
data/.rubocop.yml CHANGED
@@ -18,6 +18,3 @@ Style/FileName:
18
18
 
19
19
  Metrics/AbcSize:
20
20
  Max: 100
21
-
22
- RegexpLiteral:
23
- MaxSlashes: 0
data/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ 0.7.2 (September 25th, 2015)
2
+
3
+ - Include windows guest directive on winrm template to correct issues with incorrect
4
+ guest identification.
5
+
1
6
  0.7.1 (August 13th, 2015)
2
7
 
3
8
  - Add configuration option for disable_commit_guard, which when set to true will silence
@@ -131,7 +131,7 @@ module VagrantPlugins
131
131
  groups
132
132
  end
133
133
 
134
- # rubocop:disable Metrics/AbcSize, MethodLength, Metrics/CyclomaticComplexity, Metrics/PerceivedComplexity
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 Metrics/AbcSize, MethodLength, Metrics/CyclomaticComplexity, Metrics/PerceivedComplexity
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 # Managed servers could be in different timezones
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
 
@@ -1,5 +1,5 @@
1
1
  module VagrantPlugins
2
2
  module Orchestrate
3
- VERSION = "0.7.1"
3
+ VERSION = "0.7.2"
4
4
  end
5
5
  end
@@ -5,7 +5,7 @@ require "vagrant-spec/unit"
5
5
  describe VagrantPlugins::Orchestrate::Command::Root do
6
6
  include_context "vagrant-unit"
7
7
 
8
- let(:argv) { [] }
8
+ let(:argv) { [] }
9
9
  let(:iso_env) do
10
10
  env = isolated_environment
11
11
  env.vagrantfile("")
@@ -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.1
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-08-14 00:00:00.000000000 Z
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