summaryrefslogtreecommitdiffstats
path: root/glances/plugins/glances_fs.py
diff options
context:
space:
mode:
Diffstat (limited to 'glances/plugins/glances_fs.py')
-rw-r--r--glances/plugins/glances_fs.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/glances/plugins/glances_fs.py b/glances/plugins/glances_fs.py
index 6c1e618a..7d43d988 100644
--- a/glances/plugins/glances_fs.py
+++ b/glances/plugins/glances_fs.py
@@ -103,8 +103,6 @@ class Plugin(GlancesPlugin):
return self.stats
# Optionnal hack to allow logicals mounts points (issue #448)
- # Ex: Had to put 'allow=zfs' in the [fs] section of the conf file
- # to allow zfs monitoring
for fstype in self.get_conf_value('allow'):
try:
fs_stat += [f for f in psutil.disk_partitions(all=True) if f.fstype.find(fstype) >= 0]