diff --git a/snapper/interfaces/zfs.py b/snapper/interfaces/zfs.py index f231316..f8f9d88 100644 --- a/snapper/interfaces/zfs.py +++ b/snapper/interfaces/zfs.py @@ -118,7 +118,7 @@ class Zfs: matches = re.match("^(?P[^\t]+)\t(?P[^\t]+)\t(?P[^\t]+)\t(?P[^\n]+)", line) if matches is not None: md = matches.groupdict() - if md["property"] == prop and (md["value"] == "true" or md["value"] == "parent") and md["source"] == "local": + if md["property"] == prop and md["source"] == "local": filesystems.append(md["name"]) result = Result(data=filesystems, cached=False) return result