vagrant-orchestrate 0.6.1.patch → 0.6.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 23757b8b0878a48a5c9e30518eab353976e14f0d
4
- data.tar.gz: 40b510fdba26c874cc9d9c9272320d8c09788a24
3
+ metadata.gz: bb9fd67dca532ed2ec013c497982be36e4d41b2a
4
+ data.tar.gz: 862d2f308b47c5eb93fb3107ab640ec4f32eb481
5
5
  SHA512:
6
- metadata.gz: f49f2d4c970ecd5c325a7eb48997469d5b9106c68822868d375f9e5bf6aa5c74eea302f7311e0c700811bea8ba221214c8f2c110416fcb5daa8889a095dbc1cb
7
- data.tar.gz: 9970f9430d76df081bf1629230dc4d1e8aceea7c0553e790d68002e5026c029b264f289318717980762fe2b1705263f5fc611cf64be0f2e3e51f2daf6b904287
6
+ metadata.gz: 58850ee323d7aa033de78c7e215209aa3ec738d4302a8ed911922017f5ece5231dce88b48e2fcd60386a2d1206a8f0136124317e17c91f0e54421e9ce6b95015
7
+ data.tar.gz: 1c2226b9a068345cfc40f93ebdc82547c844b0e4767f7b42de1739d195a4de53311140b9c5c1125992c861138e60213cde6eaec74a92dbf5a88ef0ba1866aa44
data/CHANGELOG.md CHANGED
@@ -1,8 +1,9 @@
1
- 0.6.1 (May 18th, 2015)
1
+ 0.6.1 (May 23rd, 2015)
2
2
 
3
3
  - Change the credentials manager to add the `smb_username` and `smb_password` to
4
4
  the synced folders for a machine if the communicator is `winrm`. For Windows,
5
- this means only a single credential prompt.
5
+ this means only a single credential prompt for both machine authentication and
6
+ SMB auth.
6
7
 
7
8
  0.6.0 (May 15th, 2015)
8
9
 
data/README.md CHANGED
@@ -202,7 +202,7 @@ managed-4 2015-04-19 00:43:07 UTC e983dddd8041c5db77494266328f1d266430f57d cb
202
202
  You'll need to bootstrap the target machine. The following script should get you there.
203
203
 
204
204
  ```
205
- winrm quickconfig
205
+ winrm quickconfig -q
206
206
  winrm set winrm/config/service/auth @{Negotiate="true"}
207
207
  winrm set winrm/config/service @{AllowUnencrypted="false"}
208
208
  winrm set winrm/config/winrs @{MaxShellsPerUser="25"}
@@ -212,6 +212,11 @@ sc config winrm type= own
212
212
  ```
213
213
  * Check out [the winrm-s readme](https://github.com/Cimpress-MCP/vagrant-winrm-s/blob/master/README.md#setting-up-your-server) for more information
214
214
 
215
+ ### Synced Folders
216
+
217
+ See the [Synced Folders](https://github.com/tknerr/vagrant-managed-servers#synced-folders-windows)
218
+ section of the Vagrant Managed Servers readme for more detail.
219
+
215
220
  ## Contributing
216
221
 
217
222
  1. Fork it ( https://github.com/Cimpress-MCP/vagrant-orchestrate/fork )
@@ -26,46 +26,6 @@ module VagrantPlugins
26
26
  b.use DownloadStatus
27
27
  end
28
28
  end
29
-
30
- # !!!!!!!!!!!!!!!!!!!!!! "TEMPORARY" PATCH !!!!!!!!!!!!!!!!!!!!!!!
31
- # I'm adding the SMB support here, while I wait on feedback for
32
- # https://github.com/tknerr/vagrant-managed-servers/pull/47
33
- # !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
34
- # This action is called when `vagrant provision` is called.
35
- # rubocop:disable MethodLength
36
- def self.action_provision
37
- Vagrant::Action::Builder.new.tap do |b|
38
- b.use ConfigValidate
39
- b.use WarnNetworks
40
- b.use Call, IsLinked do |env, b2|
41
- unless env[:result]
42
- b2.use MessageNotLinked
43
- next
44
- end
45
-
46
- # rubocop:disable Lint/ShadowingOuterLocalVariable
47
- b2.use Call, IsReachable do |env, b3|
48
- unless env[:result]
49
- b3.use MessageNotReachable
50
- next
51
- end
52
-
53
- b3.use Provision
54
- if env[:machine].config.vm.communicator == :winrm
55
- # Use the builtin vagrant folder sync for Windows target servers.
56
- # This gives us SMB folder sharing, which is much faster than the
57
- # WinRM uploader for any non-trivial number of files.
58
- b3.use Vagrant::Action::Builtin::SyncedFolders
59
- else
60
- # Vagrant managed servers custom implementation
61
- b3.use SyncFolders
62
- end
63
- end
64
- # rubocop:enable Lint/ShadowingOuterLocalVariable
65
- end
66
- end
67
- # rubocop:enable MethodLength
68
- end
69
29
  end
70
30
  end
71
31
  end
@@ -1,5 +1,5 @@
1
1
  module VagrantPlugins
2
2
  module Orchestrate
3
- VERSION = "0.6.1.patch"
3
+ VERSION = "0.6.1"
4
4
  end
5
5
  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.6.1.patch
4
+ version: 0.6.1
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-18 00:00:00.000000000 Z
11
+ date: 2015-05-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -141,9 +141,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
141
141
  version: '0'
142
142
  required_rubygems_version: !ruby/object:Gem::Requirement
143
143
  requirements:
144
- - - '>'
144
+ - - '>='
145
145
  - !ruby/object:Gem::Version
146
- version: 1.3.1
146
+ version: '0'
147
147
  requirements: []
148
148
  rubyforge_project:
149
149
  rubygems_version: 2.0.14