feat: Disable CoW check on ZFS (#612)

This commit is contained in:
Kroese
2024-01-31 03:54:40 +01:00
committed by GitHub
parent 3c31bc91e4
commit 78594098cc
4 changed files with 4 additions and 9 deletions

View File

@@ -80,7 +80,7 @@ getSize() {
isCow() {
local FS=$1
if [[ "${FS,,}" == "xfs" || "${FS,,}" == "zfs" || "${FS,,}" == "btrfs" || "${FS,,}" == "bcachefs" ]]; then
if [[ "${FS,,}" == "xfs" || "${FS,,}" == "btrfs" || "${FS,,}" == "bcachefs" ]]; then
return 0
fi