filedepot 0.3.7 → 0.3.8
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 +4 -4
- data/README.md +15 -0
- data/lib/filedepot/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fd811460917ce36b7a1e5824ba5bea335ccc6dffffc7bd4af12be3c912125aa5
|
|
4
|
+
data.tar.gz: 5e6fcc39b88b778229b76a1477a83a2c96f1bd70d795da1d6a31b190276f6b20
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0ef98097345bbafb83f37b34b0762b99125df858a051c8b01250cf361b8670292797dd036d1e70b0ca79ba24949661d9685e4fd468349dc9f876a4405c6d6ac7
|
|
7
|
+
data.tar.gz: 0c909b09b651bd586fc0bf9029bb10067f19febf7742794768e49bcca5653339b275d732dd28d1b3ee251c86620315bbf5ce002e98e3b01fe0b358f86b84f2c4
|
data/README.md
CHANGED
|
@@ -49,6 +49,21 @@ stores:
|
|
|
49
49
|
|
|
50
50
|
When `default_store` does not match any store name, the first store is used.
|
|
51
51
|
|
|
52
|
+
## Permissions
|
|
53
|
+
|
|
54
|
+
On the server, use these commands to set up the folder for filedepot:
|
|
55
|
+
|
|
56
|
+
```bash
|
|
57
|
+
chmod 2775 /data/condivisa
|
|
58
|
+
setfacl -d -m g:filedepot:rwx /data/filedepot
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
For existing folders:
|
|
62
|
+
|
|
63
|
+
```bash
|
|
64
|
+
setfacl -m g:filedepot:rwx /data/filedepot
|
|
65
|
+
```
|
|
66
|
+
|
|
52
67
|
## Commands
|
|
53
68
|
|
|
54
69
|
| Command | Description |
|
data/lib/filedepot/version.rb
CHANGED