vagrant-better-smb 0.1.0 → 0.2.0

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: 5e7e0dfa577c1d154a7e01618af61ef510865c22
4
- data.tar.gz: 60eb224da97674d6b6b61bb9d92fc9666fa03bbe
3
+ metadata.gz: 7c4e38cf1063d38124eaf8b6081c08d971455ead
4
+ data.tar.gz: c79b302b201737acd48f59907c22bcb8e0d70c06
5
5
  SHA512:
6
- metadata.gz: 9f3f7d3170af07d24bae8949fd5f7b9d59f2fe86b75c72c99706106b71af4726b7c3cd44b7a5e13b5807127c005b6dc18567e44e907e23f286f54a54becb8a64
7
- data.tar.gz: b6dee4a9ec31a468f5dd221cf15ed1784cfe2d225313990ca5b9a68a48fa8b50cf6da38f0c4f4fd0c3f1ff4c7dd29f849486c1aeca0e44f2c83fe4109850556b
6
+ metadata.gz: 8698df375d1833605223c117d2325b8a5f07fd4bb162745b14c1c6712cedda5c33680e37034b320fec8c2134465ec6d40c559ce39c1fbc8637d26a290a71e8d4
7
+ data.tar.gz: 7bac3e5cb1ae5ac630bc52e55e3bf36148d7be7780f19e28850b02d14f2f7b446c1d03068e4d7080fba7a0f2b5bde89e4b1eb4d432e5f6018b5573217ee35034
data/README.md CHANGED
@@ -36,7 +36,7 @@ Then, in your ```Vagrantfile```:
36
36
  2. Is your password up to date? Update it with ```smbpasswd```.
37
37
  3. Can you see your share in ```smbclient -L 127.0.0.1 -U <your username>```?
38
38
  4. Have you configured SELinux correctly? Allow Samba to access home directories
39
- with ```setsebool -P samba_enable_home_dirs 1```
39
+ with ```setsebool -P samba_enable_home_dirs on```
40
40
 
41
41
  ## Hacking
42
42
 
@@ -53,7 +53,7 @@ module VagrantPlugins
53
53
  output = true
54
54
  end
55
55
 
56
- nfs_cleanup(id)
56
+ cleanup_exports(id)
57
57
  end
58
58
  end
59
59
  end
@@ -8,6 +8,6 @@
8
8
 
9
9
  module VagrantPlugins
10
10
  module BetterSmb
11
- VERSION = "0.1.0"
11
+ VERSION = "0.2.0"
12
12
  end
13
13
  end
@@ -4,5 +4,7 @@
4
4
  path = <%= opts[:hostpath] %>
5
5
  writeable = yes
6
6
  hosts allow = <%= opts[:better_smb_machine_ip] %>
7
+ guest ok = yes
8
+ guest user = <%= opts[:better_smb_share_user] %>
7
9
  <% end %>
8
10
  # VAGRANT-END: <%= user %> <%= uuid %>
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-better-smb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Luke Carrier
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-06-08 00:00:00.000000000 Z
11
+ date: 2015-06-23 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Better SMB support for Vagrant
14
14
  email: luke@carrier.im