Dashboard: hide ZFS bar when no ZFS is used

This commit is contained in:
bergware
2023-07-25 09:50:44 +02:00
parent bf0d59fc11
commit 12631a107d

View File

@@ -71,7 +71,7 @@ $parity = _var($var,'mdResync');
$mover = file_exists('/var/run/mover.pid');
$btrfs = exec('pgrep -cf /sbin/btrfs');
$dot = _var($display,'number','.,')[0];
$zfs = file_exists('/proc/spl/kstat/zfs/arcstats');
$zfs = count(array_filter(array_column($disks,'fsType'),function($fs){return str_replace('luks:','',$fs??'')=='zfs';}));
foreach ($disks as $disk) {
switch (_var($disk,'type')) {