diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2021-12-10 15:12:55 +0100 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2021-12-10 15:12:55 +0100 |
commit | 20b1290103f23e40614518291b8d4847e37fea05 (patch) | |
tree | 26d55e9e1f6673f64a29d0940502ca028d2df0f5 /src/libstore/globals.hh | |
parent | f9437b4f18d0a8e172b1002dd1a472129b95a5f5 (diff) |
Ignore system.nfs4_acl
Closes #1584.
Diffstat (limited to 'src/libstore/globals.hh')
-rw-r--r-- | src/libstore/globals.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/globals.hh b/src/libstore/globals.hh index 2f9e8c6e8..433deaf0f 100644 --- a/src/libstore/globals.hh +++ b/src/libstore/globals.hh @@ -799,7 +799,7 @@ public: )"}; Setting<StringSet> ignoredAcls{ - this, {"security.selinux"}, "ignored-acls", + this, {"security.selinux", "system.nfs4_acl"}, "ignored-acls", R"( A list of ACLs that should be ignored, normally Nix attempts to remove all ACLs from files and directories in the Nix store, but |