vagrant-bindfs 0.4.10 → 0.4.11

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: 900a04a49bc1a677d237d79da64f34934005dbf3
4
- data.tar.gz: 5976a7561c03512d795bedf4139a3b80212e6f2a
3
+ metadata.gz: 16065d7f1c9090dfcae7c64cfe1a0ff2503ee6ab
4
+ data.tar.gz: f358e402c150b416cb23a6f7875dcbc19b337c0e
5
5
  SHA512:
6
- metadata.gz: 34331af45a9c3c6360389ac0d74a40aa57bb454a5a7c3854202294f0a54af005083ac992129bc91432bad00f104bf4bc1e00a9c26e84de05bb769f74ba8522d5
7
- data.tar.gz: eb2e1f2d5081cce1fc235282495b9caf6f007f8ef79e0bff1ded307fe1afe224cd63fcb5eb58c5350910911afa2345a6bd602c869796849a83a5a526db59a0c0
6
+ metadata.gz: 3b4c83228d585fe252ccee7f2160e0278bfb8f5f9fecf5cdb574b3e1137d63af70b36351c97d622a00df5a7034fdaffc62daa7bf9ec62e0315a576557faa9545
7
+ data.tar.gz: 785f266c86f3de5c7593d9c629244b16a1b857aaad94aa9a1ef7ebec27d9eaac83c98a5d18c46a3709d6054993d3d2d1d160fdf047916f06373d5e8f2c2152bb
@@ -80,6 +80,8 @@ module VagrantPlugins
80
80
  "mirror" => { long: ["mirror"], short: ["m"], type: :option, default: nil },
81
81
  "mirror-only" => { long: ["mirror-only"], short: ["M"], type: :option, default: nil },
82
82
  "map" => { long: ["map"], short: [], type: :option, default: nil },
83
+ "uid-offset" => { long: ["uid-offset"], short: [], type: :option, default: nil },
84
+ "gid-offset" => { long: ["gid-offset"], short: [], type: :option, default: nil },
83
85
 
84
86
  # File creation policy
85
87
  "create-as-user" => { long: ["create-as-user"], short: [], type: :flag, default: false },
@@ -118,12 +120,17 @@ module VagrantPlugins
118
120
  "hide-hard-links" => { long: ["hide-hard-links"], short: [], type: :flag, default: false },
119
121
  "resolve-symlinks" => { long: ["resolve-symlinks"], short: [], type: :flag, default: false },
120
122
  "resolve-symlink-policy" => { long: ["resolve-symlink-policy"], short: [], type: :option, default: nil },
123
+
124
+ # Multithreading
125
+ "multithreaded" => { long: ["multithreaded"], short: [], type: :flag, default: false },
126
+ "enable-lock-forwarding" => { long: ["enable-lock-forwarding"], short: [], type: :flag, default: false },
127
+ "disable-lock-forwarding" => { long: ["disable-lock-forwarding"], short: [], type: :flag, default: false },
121
128
 
122
129
  # Miscellaneous
123
130
  "no-allow-other" => { long: ["no-allow-other"], short: ["n"], type: :flag, default: false },
124
131
  "realistic-permissions" => { long: ["realistic-permissions"], short: [], type: :flag, default: false },
125
132
  "ctime-from-mtime" => { long: ["ctime-from-mtime"], short: [], type: :flag, default: false },
126
- "multithreaded" => { long: ["multithreaded"], short: [], type: :flag, default: false },
133
+ "enabe-ioctl" => { long: ["enable-ioctl"], short: [], type: :flag, default: false },
127
134
 
128
135
  # FUSE options
129
136
  "o" => { long: [], short: ["o"], type: :option, default: nil },
@@ -132,6 +139,14 @@ module VagrantPlugins
132
139
  "f" => { long: [], short: ["f"], type: :flag, default: false },
133
140
  }
134
141
 
142
+ if bindfs_version_lower_than("1.13.2")
143
+ options.delete("uid-offset")
144
+ options.delete("gid-offset")
145
+ options.delete("enable-ioctl")
146
+ options.delete("enable-lock-forwarding")
147
+ options.delete("disable-lock-forwarding")
148
+ end
149
+
135
150
  if bindfs_version_lower_than("1.13.0")
136
151
  options.delete("resolve-symlinks")
137
152
  options.delete("resolve-symlink-policy")
@@ -1,9 +1,9 @@
1
1
  module VagrantPlugins
2
2
  module Bindfs
3
3
 
4
- VERSION = "0.4.10"
4
+ VERSION = "0.4.11"
5
5
 
6
- SOURCE_VERSION = "1.13.2"
6
+ SOURCE_VERSION = "1.13.4"
7
7
  SOURCE_URLS = [
8
8
  "http://bindfs.org/downloads/bindfs-#{SOURCE_VERSION}.tar.gz",
9
9
  "http://bindfs.dnsalias.net/downloads/bindfs-#{SOURCE_VERSION}.tar.gz"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-bindfs
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.10
4
+ version: 0.4.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gaël-Ian Havard
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2016-10-02 00:00:00.000000000 Z
13
+ date: 2016-10-28 00:00:00.000000000 Z
14
14
  dependencies: []
15
15
  description: " A Vagrant plugin to automate bindfs mount in the VM. This allow you
16
16
  to change owner, group and permissions on files and, for example, work around NFS