-
-
Notifications
You must be signed in to change notification settings - Fork 148
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove dependency on make and selinux-policy-devel in selinux::module #141
Comments
what about interfaces and macros from |
That directory doesn't exist on a minimal installation (only policycoreutils-python are extra installed). What are they needed for ? |
very simple selinux policy:
it fails to compile at the checkmodule command:
example selinux policies: https://github.com/TresysTechnology/refpolicy-contrib/blob/master |
@ericcolruyt what do you think about something like:
if you feel this is important for you please comment in the next few days. |
superseded by #178 - closing this. |
Affected Puppet, Ruby, OS and module versions/distributions
How to reproduce (e.g Puppet code you use)
The requirement on make for compiling a .te file to .pp is not really needed.
Doing
/usr/bin/checkmodule -M -m -o ${prefix}${name}.mod ${prefix}${name}.te && /usr/bin/semodule_package -o ${prefix}${name}.pp -m ${prefix}${name}.mod && rm -f ${prefix}${name}.mod
is sufficient.
This prevents make to be installed on the system, which is something that we want to avoid.
The text was updated successfully, but these errors were encountered: