Fix beacon documentation for the new beahavior mentioned in issue #47267

This commit is contained in:
Jaro 2018-04-24 21:03:40 +02:00
parent 428e915d6a
commit fcc042aa5f

View file

@ -63,8 +63,8 @@ def beacon(config):
beacons:
diskusage:
- interval: 120
- 'c:\': 90%
- 'd:\': 50%
- 'c:\\': 90%
- 'd:\\': 50%
Regular expressions can be used as mount points.
@ -73,7 +73,7 @@ def beacon(config):
beacons:
diskusage:
- '^\/(?!home).*$': 90%
- '^[a-zA-Z]:\$': 50%
- '^[a-zA-Z]:\\$': 50%
The first one will match all mounted disks beginning with "/", except /home
The second one will match disks from A:\ to Z:\ on a Windows system