From 36177724e5c4acb4d11df2a71da5b683bfcaa095 Mon Sep 17 00:00:00 2001 From: Franco Fichtner Date: Fri, 10 Jul 2015 08:32:23 +0200 Subject: [PATCH] widgets: add tmpfs to system disk usage section; #243 --- src/www/includes/functions.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/www/includes/functions.inc.php b/src/www/includes/functions.inc.php index b8ca6b0fe..1a31104bb 100644 --- a/src/www/includes/functions.inc.php +++ b/src/www/includes/functions.inc.php @@ -211,7 +211,7 @@ function get_temp() { function get_mounted_filesystems() { $mout = ""; $filesystems = array(); - exec("/bin/df -Tht ufs,zfs,cd9660 | /usr/bin/awk '{print $1, $2, $3, $4, $6, $7;}'", $mout); + exec("/bin/df -Tht ufs,tmpfs,zfs,cd9660 | /usr/bin/awk '{print $1, $2, $3, $4, $6, $7;}'", $mout); /* Get rid of the header */ array_shift($mout);