Change build.conf to default to modular policy builds
Change build.conf to default to modular policy builds rather than monolithic policy builds. Rationale: All modern Linux distributions that incorporate SELinux support have switched to using modular policy, and many of the policy tools (semodule, semanage, and even modern versions of setsebool) only work if using modular policy. Signed-off-by: Stephen Smalley <sds@tycho.nsa.gov>
This commit is contained in:
parent
3139988506
commit
dd6d81a0f3
|
@ -44,9 +44,9 @@ NAME = refpolicy
|
|||
# not work in conditional policy.
|
||||
DIRECT_INITRC = n
|
||||
|
||||
# Build monolithic policy. Putting n here
|
||||
# will build a loadable module policy.
|
||||
MONOLITHIC = y
|
||||
# Build monolithic policy. Putting y here
|
||||
# will build a monolithic policy.
|
||||
MONOLITHIC = n
|
||||
|
||||
# User-based access control (UBAC)
|
||||
# Enable UBAC for role separations.
|
||||
|
|
Loading…
Reference in New Issue