1# This file keeps definitions of mounting points (paths) of hard drives to use with chunk server.
2# A path may begin with extra characters which swiches additional options:
3#  - '*' means that this hard drive is 'marked for removal' and all data will be replicated to other hard drives (usually on other chunkservers)
4#  - '<' means that all data from this hard drive should be moved to other local hard drives
5#  - '>' means that all data from other local hard drives should be moved to this hard drive
6#  - '~' means that significant change of total blocks count will not mark this drive as damaged
7# If there are both '<' and '>' drives then data will be moved only between these drives
8# It is possible to specify optional space limit (after each mounting point), there are two ways of doing that:
9#  - set space to be left unused on a hard drive (this overrides the default setting from mfschunkserver.cfg)
10#  - limit space to be used on a hard drive
11# Space limit definition: [0-9]*(.[0-9]*)?([kMGTPE]|[KMGTPE]i)?B?, add minus in front for the first option.
12#
13# Examples:
14#
15# use hard drive '/mnt/hd1' with default options:
16#/mnt/hd1
17#
18# use hard drive '/mnt/hd2', but replicate all data from it:
19#*/mnt/hd2
20#
21# use hard drive '/mnt/hd3', but try to leave 5GiB on it:
22#/mnt/hd3 -5GiB
23#
24# use hard drive '/mnt/hd4', but use only 1.5TiB on it:
25#/mnt/hd4 1.5TiB
26#
27# use hard drive '/mnt/hd5', but fill it up using data from other drives
28#>/mnt/hd5
29#
30# use hard drive '/mnt/hd6', but move all data to other hard drives
31#</mnt/hd6
32#
33# use hard drive '/mnt/hd7', but ignore significant change of hard drive total size (e.g. compressed file systems)
34#~/mnt/hd7
35