vagrant-bindfs 0.4.2 → 0.4.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/vagrant-bindfs/bind.rb +1 -1
- data/lib/vagrant-bindfs/version.rb +1 -1
- metadata +8 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 11ff91b2336c0411e50fd703acd8d5e6ad48661e
|
4
|
+
data.tar.gz: a124f67f87f2a71bfa52c24f6966a3d74edfbb6e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2418de12bcb59623f33bc3d695f4a319c81b84e052e527275fba2b68cc2bdf2c9752d59950781e153ba3d3094128b57a40ba3b6a2f2437603bfab1b98c0f2b04
|
7
|
+
data.tar.gz: aba7cb77a5c744f28fdf49c3009b96f07e0d2081dc81e277f62392c0b831eb5f817f1873f47e4a4c91d975b38c0ee879ea697673a1a9aea63fa9392a4265c0bc
|
data/lib/vagrant-bindfs/bind.rb
CHANGED
@@ -62,7 +62,7 @@ module VagrantPlugins
|
|
62
62
|
next
|
63
63
|
end
|
64
64
|
|
65
|
-
if @machine.communicate.test("mount | grep bindfs | grep #{command.destination}")
|
65
|
+
if @machine.communicate.test("mount | grep '^bindfs' | grep #{command.destination}")
|
66
66
|
@env[:ui].info I18n.t(
|
67
67
|
"vagrant.config.bindfs.already_mounted",
|
68
68
|
dest: command.destination
|
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.
|
4
|
+
version: 0.4.3
|
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: 2015-
|
13
|
+
date: 2015-08-31 00:00:00.000000000 Z
|
14
14
|
dependencies: []
|
15
15
|
description: A Vagrant plugin to automate bindfs mount in the VM. This allow you to
|
16
16
|
change owner, group and permissions on files and, for example, work around NFS share
|
@@ -22,6 +22,9 @@ executables: []
|
|
22
22
|
extensions: []
|
23
23
|
extra_rdoc_files: []
|
24
24
|
files:
|
25
|
+
- MIT-LICENSE
|
26
|
+
- README.md
|
27
|
+
- lib/vagrant-bindfs.rb
|
25
28
|
- lib/vagrant-bindfs/bind.rb
|
26
29
|
- lib/vagrant-bindfs/cap/debian/install_bindfs.rb
|
27
30
|
- lib/vagrant-bindfs/cap/fedora/install_bindfs.rb
|
@@ -36,10 +39,7 @@ files:
|
|
36
39
|
- lib/vagrant-bindfs/errors.rb
|
37
40
|
- lib/vagrant-bindfs/plugin.rb
|
38
41
|
- lib/vagrant-bindfs/version.rb
|
39
|
-
- lib/vagrant-bindfs.rb
|
40
42
|
- locales/en.yml
|
41
|
-
- README.md
|
42
|
-
- MIT-LICENSE
|
43
43
|
homepage: https://github.com/gael-ian/vagrant-bindfs
|
44
44
|
licenses:
|
45
45
|
- MIT
|
@@ -50,17 +50,17 @@ require_paths:
|
|
50
50
|
- lib
|
51
51
|
required_ruby_version: !ruby/object:Gem::Requirement
|
52
52
|
requirements:
|
53
|
-
- -
|
53
|
+
- - ">="
|
54
54
|
- !ruby/object:Gem::Version
|
55
55
|
version: '0'
|
56
56
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
57
57
|
requirements:
|
58
|
-
- -
|
58
|
+
- - ">="
|
59
59
|
- !ruby/object:Gem::Version
|
60
60
|
version: '0'
|
61
61
|
requirements: []
|
62
62
|
rubyforge_project:
|
63
|
-
rubygems_version: 2.
|
63
|
+
rubygems_version: 2.2.2
|
64
64
|
signing_key:
|
65
65
|
specification_version: 4
|
66
66
|
summary: A Vagrant plugin to automate bindfs mount in the VM
|