Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/serverinfo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/OperatingSystems/DefaultOs.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/OperatingSystems/DefaultOs.php b/lib/OperatingSystems/DefaultOs.php
index bebbfd2..3581eae 100644
--- a/lib/OperatingSystems/DefaultOs.php
+++ b/lib/OperatingSystems/DefaultOs.php
@@ -154,7 +154,7 @@ class DefaultOs {
*/
public function getDiskInfo() {
$blacklist = ['', 'Type', 'tmpfs', 'devtmpfs'];
- $data = shell_exec('df -T');
+ $data = shell_exec('df -TP');
$lines = preg_split('/[\r\n]+/', $data);
foreach ($lines as $line) {