commit: 32665ad4a13fd9b713f9642020eacd47911e3330 Author: Rahul Sandhu <rahul <AT> sandhuservices <DOT> dev> AuthorDate: Wed Jan 8 12:42:27 2025 +0000 Commit: Jason Zaman <perfinion <AT> gentoo <DOT> org> CommitDate: Sat Mar 8 22:45:25 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32665ad4
profiles: features/selinux: build all policy types by default If no policy types are specified, all should be built, not a subsystem of policy types, especially given that said subset does not contain our recommended policy type for most users (mcs) Signed-off-by: Rahul Sandhu <rahul <AT> sandhuservices.dev> Signed-off-by: Jason Zaman <perfinion <AT> gentoo.org> profiles/features/selinux/make.defaults | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/profiles/features/selinux/make.defaults b/profiles/features/selinux/make.defaults index e5a1534aaee8..d7e8ef2aaf75 100644 --- a/profiles/features/selinux/make.defaults +++ b/profiles/features/selinux/make.defaults @@ -11,7 +11,8 @@ USE="selinux" FEATURES="selinux sesandbox sfperms -pid-sandbox" -POLICY_TYPES="strict targeted" +# Build all policy types by default +POLICY_TYPES="strict targeted mcs mls" PORTAGE_T="portage_t" PORTAGE_FETCH_T="portage_fetch_t" PORTAGE_SANDBOX_T="portage_sandbox_t"
