mirror of
https://github.com/SELinuxProject/selinux
synced 2024-12-12 17:15:00 +00:00
18 lines
189 B
Plaintext
18 lines
189 B
Plaintext
|
module modreq_role_opt 1.0;
|
||
|
|
||
|
require {
|
||
|
class file {read write};
|
||
|
|
||
|
}
|
||
|
|
||
|
type mod_global_t;
|
||
|
|
||
|
optional {
|
||
|
require {
|
||
|
role role_req_r, user_r;
|
||
|
}
|
||
|
type mod_opt_t;
|
||
|
|
||
|
allow role_req_r user_r;
|
||
|
}
|