diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2022-06-13 16:23:13 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-13 16:23:13 +0200 |
commit | 9f58df4c91007aa9f4eb701fd6667ac3ed39c8fa (patch) | |
tree | e519eea11f38a6f1e79ff5add3a1ebec23fda3f1 /src | |
parent | 798efdf10bae6b2b31a6d37b089ee868f08b43ab (diff) | |
parent | 3f5f84258d0d8e348f2452ca97be066b0b1b741d (diff) |
Merge pull request #6619 from Jonpez2/patch-1
Add security.csm to ignored-acls
Diffstat (limited to 'src')
-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 |