-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This builds on github PR #97 to add a configurable optional home directory per user as requested in issue #85. The user's home gets specified in a JSON file pointed to by the `---usr-json-path` argument. The `root` property needs to be set: ```json [ { "username": "alice", "password": "12345678", "root": "alice" }, { "username": "bob", "password": "secret", "root": "bob" } ] ``` At the moment if the `root` is not specified then the user will gain access to the root of the storage back-end.
- Loading branch information
1 parent
ff3bea4
commit d7b931b
Showing
6 changed files
with
389 additions
and
11 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
mod choose; | ||
mod restrict; | ||
mod rooter; | ||
|
||
pub use choose::{ChoosingVfs, InnerVfs}; | ||
pub use choose::{ChoosingVfs, InnerVfs, SbeMeta}; | ||
pub use restrict::RestrictingVfs; | ||
pub use rooter::{RooterVfs, UserWithRoot}; |
Oops, something went wrong.