diff options
author | Jonpez2 <jonpez63@gmail.com> | 2022-06-08 09:32:14 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-08 09:32:14 +0100 |
commit | a7d25d339d94993fc8731de658f18a06e0e2a07e (patch) | |
tree | 280acccbb3c1efd0d50ee829633bb161ea0c3f96 | |
parent | 0cd560c95dd981bde84c93379f6af677d31a2d0b (diff) |
Add security.csm to the default ignore list
-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 feb6899cd..0ee27ecb6 100644 --- a/src/libstore/globals.hh +++ b/src/libstore/globals.hh @@ -802,7 +802,7 @@ public: )"}; Setting<StringSet> ignoredAcls{ - this, {"security.selinux", "system.nfs4_acl"}, "ignored-acls", + this, {"security.selinux", "system.nfs4_acl", "security.csm"}, "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 |