vagrant-winnfsd 1.0.10 → 1.0.11

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: 7bee31daf861cf51f98793818526f346659639f4
4
- data.tar.gz: c856b228ab9e21a0d18cf24a25d5187dca992a8d
3
+ metadata.gz: 876a25b5e8431573120608cd8d066a72f2b941f1
4
+ data.tar.gz: 4b611c5a0edef4550814725208dd5cc888f0b95f
5
5
  SHA512:
6
- metadata.gz: f9fdff54d0586e3268ce16b8fdc9193b837b7d8c060c436e27da8f5413ed87e69430bbe623c9085063a3c24326ea1f20b766ad711349d13acc4acc518d1c6f59
7
- data.tar.gz: 4e0b4608bdc7ebc427f49080e4e9fea151546642d42daae8e2ec9b5926a722773e21065105e3565812dc0ac99d2455ca8fcf45c872f7aee4d69872cb5b58e74c
6
+ metadata.gz: 432114baf7a5c9e73a36e5edfb70b7a013f0b579a50a8409fe70287b5cd37baa0891d35f0e2f0fe1b11b690886321a13c4d33af5684721cdbdfe2dce75a9dd73
7
+ data.tar.gz: dd6316599a4c9c18d855f7a23a28b0a80b11a751d2735af33b6059f729e8ecdaf2a35653a43d479291668a43828d228d744bee985573e13531a8db58c2342280
data/CHANGELOG CHANGED
@@ -1,6 +1,12 @@
1
1
  CHANGELOG
2
2
  =========
3
3
 
4
+ 1.0.11
5
+ ------
6
+
7
+ Update binary (contains many fixes from the winnfsd project, thanks to all contributors, especially to Yann Schepens)
8
+
9
+
4
10
  1.0.10
5
11
  ------
6
12
 
data/README.md CHANGED
@@ -20,12 +20,19 @@ $ vagrant plugin install vagrant-winnfsd
20
20
 
21
21
  To activate NFS for vagrant see: http://docs.vagrantup.com/v2/synced-folders/nfs.html
22
22
 
23
- The plugin extends vagrant in the way that you can use NFS also with windows. So the following hint on the vagrant documentation page is no longer true.
23
+ The plugin extends vagrant in the way that you can use NFS also with windows. So the following hint on the vagrant documentation page is no longer true:
24
24
 
25
25
  ```
26
26
  Windows users: NFS folders do not work on Windows hosts. Vagrant will ignore your request for NFS synced folders on Windows.
27
27
  ```
28
28
 
29
+ You will also need to declare some sort of network in order for NFS to work (the Virtualbox implied network will not work). Luckily this is easily done by adding the following line to your Vagrantfile:
30
+
31
+ ```ruby
32
+ # A private dhcp network is required for NFS to work (on Windows hosts, at least)
33
+ config.vm.network "private_network", type: "dhcp"
34
+ ```
35
+
29
36
  ## Settings
30
37
 
31
38
  ### Logging
@@ -36,11 +43,11 @@ You activate the logging of the nfs daemon which will show the daemon window in
36
43
 
37
44
  You can set the uid via the `config.winnfsd.uid` param and the gid via the `config.winnfsd.gid` param. Example:
38
45
 
39
- ```
46
+ ```ruby
40
47
  Vagrant.configure('2') do |config|
41
48
  config.winnfsd.uid = 1
42
49
  config.winnfsd.gid = 1
43
50
  end
44
51
  ```
45
52
 
46
- Note that will be set global, that means the uid and gid is taken from the first box which starts the nfs daemon. If a box with an other uid or gid is started after that the option will be ignored.
53
+ Note that will be set global, that means the uid and gid is taken from the first box which starts the nfs daemon. If a box with an other uid or gid is started after that the option will be ignored.
data/bin/winnfsd.exe CHANGED
Binary file
@@ -1,4 +1,4 @@
1
1
 
2
2
  module VagrantWinNFSd
3
- VERSION = '1.0.10'
3
+ VERSION = '1.0.11'
4
4
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-winnfsd
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.10
4
+ version: 1.0.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alexander Schneider
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-07-17 00:00:00.000000000 Z
11
+ date: 2014-12-29 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: |2
14
14
  Manage and adds support for NFS on windows.
@@ -17,25 +17,25 @@ executables: []
17
17
  extensions: []
18
18
  extra_rdoc_files: []
19
19
  files:
20
+ - ".gitignore"
21
+ - CHANGELOG
22
+ - Gemfile
23
+ - LICENSE
24
+ - README.md
25
+ - Rakefile
20
26
  - bin/nfsservice.bat
21
27
  - bin/setupfirewall.vbs
22
28
  - bin/winnfsd.exe
23
- - CHANGELOG
24
- - Gemfile
29
+ - lib/vagrant-winnfsd.rb
25
30
  - lib/vagrant-winnfsd/cap/nfs.rb
26
31
  - lib/vagrant-winnfsd/config/config.rb
27
32
  - lib/vagrant-winnfsd/config/winnfsd.rb
28
33
  - lib/vagrant-winnfsd/plugin.rb
29
34
  - lib/vagrant-winnfsd/synced_folder.rb
30
35
  - lib/vagrant-winnfsd/version.rb
31
- - lib/vagrant-winnfsd.rb
32
- - LICENSE
33
36
  - locales/en.yml
34
- - Rakefile
35
- - README.md
36
37
  - spec/vagrant-winnfsd/config_spec.rb
37
38
  - vagrant-winnfsd.gemspec
38
- - .gitignore
39
39
  homepage: https://github.com/gm-alex/vagrant-winnfsd
40
40
  licenses:
41
41
  - Apache 2.0
@@ -46,17 +46,17 @@ require_paths:
46
46
  - lib
47
47
  required_ruby_version: !ruby/object:Gem::Requirement
48
48
  requirements:
49
- - - '>='
49
+ - - ">="
50
50
  - !ruby/object:Gem::Version
51
51
  version: '0'
52
52
  required_rubygems_version: !ruby/object:Gem::Requirement
53
53
  requirements:
54
- - - '>='
54
+ - - ">="
55
55
  - !ruby/object:Gem::Version
56
56
  version: '0'
57
57
  requirements: []
58
58
  rubyforge_project:
59
- rubygems_version: 2.0.14
59
+ rubygems_version: 2.2.2
60
60
  signing_key:
61
61
  specification_version: 4
62
62
  summary: Adds NFS support for Windows