mirror of
https://github.com/NixOS/nix
synced 2025-06-30 07:33:16 +02:00
Add ignored_acls setting
Signed-off-by: Magic_RB <magic_rb@redalder.org>
This commit is contained in:
parent
d581129ef9
commit
8438114399
2 changed files with 10 additions and 3 deletions
|
@ -805,6 +805,15 @@ public:
|
|||
may be useful in certain scenarios (e.g. to spin up containers or
|
||||
set up userspace network interfaces in tests).
|
||||
)"};
|
||||
|
||||
Setting<StringSet> ignoredAcls{
|
||||
this, {"security.selinux"}, "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
|
||||
some ACLs like `security.selinux` or `system.nfs4_acl` can't be
|
||||
removed even by root. Therefore it's best to just ignore them.
|
||||
)"};
|
||||
#endif
|
||||
|
||||
Setting<Strings> hashedMirrors{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue