Displaying 2 results from an estimated 2 matches for "check_assertion_helper".
2010 Mar 19
0
How to disable selinux protection interfering with pppd? I tried audit2allow, but policy does not load. Is there an seboolean?
..._socket create;
}
#============= pppd_t ==============
allow pppd_t chkpwd_exec_t:file execute;
allow pppd_t self:netlink_audit_socket create;
allow pppd_t shadow_t:file read;
However, I am unable to load this module due to conflict with another policy:
# semodule -i fixdialinserver.pp
libsepol.check_assertion_helper: assertion on line 0 violated by allow
pppd_t shadow_t:file { read };
libsepol.check_assertions: 1 assertion violations occured
libsemanage.semanage_expand_sandbox: Expand module failed
semodule: Failed!
#
Is there an seboolean I can tweak to allow me to load this policy?
Thanks,
Aleksey
2010 May 05
0
pppd does not work if SELinux is turned on.
...=============
> allow pppd_t chkpwd_exec_t:file execute;
> allow pppd_t self:netlink_audit_socket create;
> allow pppd_t shadow_t:file read;
>
>
> However, I am unable to load this module due to conflict with another policy:
>
> # semodule -i fixdialinserver.pp
> libsepol.check_assertion_helper: assertion on line 0 violated by allow
> pppd_t shadow_t:file { read };
> libsepol.check_assertions: 1 assertion violations occured
> libsemanage.semanage_expand_sandbox: Expand module failed
> semodule: ?Failed!
> #
>
> Is there an seboolean I can tweak to allow me to load thi...