From 9b37f756f54f41247d398879bffb6983de53af66 Mon Sep 17 00:00:00 2001
From: intrigeri <intrigeri@boum.org>
Date: Sat, 3 May 2014 14:08:04 +0000
Subject: [PATCH] Exclude tmpfs filesystems from df output in the sys handler
 (Closes: Debian#745818).

---
 handlers/sys.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/handlers/sys.in b/handlers/sys.in
index ae86f17..1d47977 100644
--- a/handlers/sys.in
+++ b/handlers/sys.in
@@ -303,7 +303,7 @@ STATUS="Checking available memory:"
 catifexec "/usr/bin/free"
 
 STATUS="Checking free disk space:"
-catifexec "/bin/df" "-al"
+catifexec "/bin/df" "-al --exclude-type=tmpfs"
 
 STATUS="Collecting what services run at what run level:"
 if [ $os = "redhat" ]; then
-- 
GitLab