vagrant-bindfs 0.1.5 → 0.1.6

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.
data/README.md CHANGED
@@ -18,16 +18,16 @@ bind_folder support following arguments...
18
18
 
19
19
  - `:user` (defaults to 'vagrant')
20
20
  - `:group` (defaults to 'vagrant')
21
- - `:perms` (defaults to 'u=rwD:g=rD:o=rD')
21
+ - `:perms` (defaults to 'u=rwX:g=rD:o=rD')
22
22
  - `:mirror`
23
23
  - `:'mirror-only'`
24
- - `:'no-allow-other'`
25
24
  - `:'create-for-user'`
26
25
  - `:'create-for-group'`
27
26
  - `:'create-with-perms'`
28
27
 
29
28
  ... and following flags (all disabled by default, vagrant-bindfs rely on bindfs own defaults) :
30
29
 
30
+ - `:'no-allow-other'`
31
31
  - `:'create-as-user'`
32
32
  - `:'create-as-mounter'`
33
33
  - `:'chown-normal'`
@@ -7,10 +7,9 @@ module VagrantBindfs
7
7
  @@options = {
8
8
  :owner => 'vagrant',
9
9
  :group => 'vagrant',
10
- :perms => 'u=rwD:g=rD:o=rD',
10
+ :perms => 'u=rwX:g=rD:o=rD',
11
11
  :mirror => nil,
12
12
  :'mirror-only' => nil,
13
- :'no-allow-other' => nil,
14
13
  :'create-for-user' => nil,
15
14
  :'create-for-group' => nil,
16
15
  :'create-with-perms' => nil,
@@ -18,6 +17,7 @@ module VagrantBindfs
18
17
 
19
18
  # Flags
20
19
  @@flags = {
20
+ :'no-allow-other' => false,
21
21
  :'create-as-user' => false,
22
22
  :'create-as-mounter' => false,
23
23
  :'chown-normal' => false,
@@ -91,6 +91,7 @@ module VagrantBindfs
91
91
  :path => path,
92
92
  :bindpath => bindpath
93
93
  )
94
+ @env.ui.info "sudo bindfs#{args} #{path} #{bindpath}"
94
95
  rescue Vagrant::Errors::VagrantError => e
95
96
  @env.ui.error e
96
97
  @env.ui.error I18n.t("vagrant.actions.vm.bind_folders.bindfs_command_fail")
@@ -1,3 +1,3 @@
1
1
  module VagrantBindfs
2
- VERSION = "0.1.5"
2
+ VERSION = "0.1.6"
3
3
  end
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 1
8
- - 5
9
- version: 0.1.5
8
+ - 6
9
+ version: 0.1.6
10
10
  platform: ruby
11
11
  authors:
12
12
  - "Folken La\xC3\xABneck"