Description: Cherry pick OSError bugfix from upstream
Author: Stéphane Graber <stgraber@ubuntu.com>

--- logaricheck-0.6.0.orig/src/check_logaricheck
+++ logaricheck-0.6.0/src/check_logaricheck
@@ -92,11 +92,15 @@ def get_all_filesystem_info():
     for line in lines:
         splitted_line = line.split()
         # (device, mount_point, fstype)
-        fs = FileSystemInfo(splitted_line[0], splitted_line[1], splitted_line[2])
-        # don't report special filesystems (such as /proc, ...), 
-        # which have a total size of 0
-        if fs.total_size != 0:
-            fs_list.append(fs)
+        try:
+            fs = FileSystemInfo(splitted_line[0], splitted_line[1], splitted_line[2])
+            # don't report special filesystems (such as /proc, ...), 
+            # which have a total size of 0
+            if fs.total_size != 0:
+                fs_list.append(fs)
+        except OSError:
+            # Ignore cases where the user can't access the file system (fuse)
+            pass
     return fs_list
 
 class AbstractFileSystemUsage:
