Merge pull request #61 from trapexit/docs

add default policies for categories and description of `all`
This commit is contained in:
Antonio SJ Musumeci 2015-03-10 18:53:40 -04:00
commit 0a0e8fdefc

View File

@ -94,6 +94,14 @@ Filesystem calls are broken up into 3 categories: action, create, search. There
| mfs (most free space) | Assuming the path is found to exist (ENOENT would not be returned) use the drive with the most free space available. | | mfs (most free space) | Assuming the path is found to exist (ENOENT would not be returned) use the drive with the most free space available. |
| epmfs (existing path, most free space) | If the path exists in multiple locations use the one with the most free space. Otherwise fall back to mfs. | | epmfs (existing path, most free space) | If the path exists in multiple locations use the one with the most free space. Otherwise fall back to mfs. |
| rand (random) | Pick an existing destination at random. | | rand (random) | Pick an existing destination at random. |
| all | Applies action to all found. For searches it will behave like first found `ff`. |
#### Defaults ####
| Category | Policy |
|----------|--------|
| action | all |
| create | epmfs |
| search | ff |
#### readdir #### #### readdir ####