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:
authorszaimen <szaimen@e.mail.de>2021-05-02 11:10:47 +0300
committerbackportbot[bot] <backportbot[bot]@users.noreply.github.com>2021-05-03 11:46:55 +0300
commitd529055376cf47d591b115b81cc76cecb7e8a737 (patch)
treed94606d7bf63b1d2b1f7337d552afdf47022d5ce
parente5b8ebe7cb0b5d596a0807635910e407974167b3 (diff)
Hide squashfs and overlay-FS from the overview
Signed-off-by: szaimen <szaimen@e.mail.de>
-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 bc91cc5..ebabaf9 100644
--- a/lib/OperatingSystems/DefaultOs.php
+++ b/lib/OperatingSystems/DefaultOs.php
@@ -196,7 +196,7 @@ class DefaultOs implements IOperatingSystem {
}
foreach ($matches['Filesystem'] as $i => $filesystem) {
- if (in_array($matches['Type'][$i], ['tmpfs', 'devtmpfs'], false)) {
+ if (in_array($matches['Type'][$i], ['tmpfs', 'devtmpfs', 'squashfs', 'overlay'], false)) {
continue;
}