mirror of
https://github.com/9001/copyparty.git
synced 2025-09-30 13:42:27 -06:00
reflinks are non-e2d safe
This commit is contained in:
parent
eb5d767b01
commit
e3baf932f3
|
@ -2726,7 +2726,11 @@ class AuthSrv(object):
|
||||||
|
|
||||||
if "dedup" in zv.flags:
|
if "dedup" in zv.flags:
|
||||||
have_dedup = True
|
have_dedup = True
|
||||||
if "e2d" not in zv.flags and "hardlink" not in zv.flags:
|
if (
|
||||||
|
"e2d" not in zv.flags
|
||||||
|
and "hardlink" not in zv.flags
|
||||||
|
and "reflink" not in zv.flags
|
||||||
|
):
|
||||||
unsafe_dedup.append("/" + zv.vpath)
|
unsafe_dedup.append("/" + zv.vpath)
|
||||||
|
|
||||||
t += "\n"
|
t += "\n"
|
||||||
|
|
Loading…
Reference in a new issue