vagrant-bindfs 0.4.7 → 0.4.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/lib/vagrant-bindfs/cap/redhat/install_bindfs.rb +1 -1
- data/lib/vagrant-bindfs/version.rb +6 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 90ab2b993260790dc9fe3d6751748e832e851bac
|
4
|
+
data.tar.gz: 0d55ed6480db568599b19f09e13a68b5e410faad
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 93e5048db96ca90e4c829a042a70b5b9b1d310cec4433df2771daf2aa9f4500c43e4566407fd5563d01992f5dd5395d7eb1131f39cf60388d92cd03797d7eeb2
|
7
|
+
data.tar.gz: 7288fdeee35ae4e23640e270191e17489946763c91bc32ce1e6ab69918c7ef2e72f6dbd15b88e5d41b8edc67c532bc7d3ebcaaab82419998e562fb403ba5027a
|
data/README.md
CHANGED
@@ -92,7 +92,7 @@ end
|
|
92
92
|
### bindfs support
|
93
93
|
|
94
94
|
The `bind_folder` config accept any option you can pass to bindfs.
|
95
|
-
vagrant-bindfs is compatible with bindfs from version 1.9 to 1.13.
|
95
|
+
vagrant-bindfs is compatible with bindfs from version 1.9 to 1.13.1.
|
96
96
|
Check [lib/vagrant-bindfs/command.rb](https://github.com/gael-ian/vagrant-bindfs/blob/master/lib/vagrant-bindfs/command.rb#L66) for a complete list of supported options and default values.
|
97
97
|
|
98
98
|
Both long arguments and shorthand are supported.
|
@@ -12,7 +12,7 @@ module VagrantPlugins
|
|
12
12
|
comm.sudo("yum -y install bindfs")
|
13
13
|
else
|
14
14
|
comm.sudo("yum -y install fuse fuse-devel gcc wget")
|
15
|
-
comm.sudo("wget
|
15
|
+
comm.sudo("wget #{SOURCE_URL} -O bindfs.tar.gz")
|
16
16
|
comm.sudo("tar --overwrite -zxvf bindfs.tar.gz")
|
17
17
|
comm.sudo("[ -d ./bindfs-#{SOURCE_VERSION} ] && cd bindfs-#{SOURCE_VERSION} && ./configure && make && make install")
|
18
18
|
comm.sudo("ln -s /usr/local/bin/bindfs /usr/bin")
|
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.8
|
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-
|
13
|
+
date: 2016-07-01 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
|