mirror of
https://github.com/SELinuxProject/selinux
synced 2024-12-24 23:12:05 +00:00
19 lines
242 B
Plaintext
19 lines
242 B
Plaintext
module modreq_perm_opt 1.0;
|
|
|
|
require {
|
|
class file { read write };
|
|
}
|
|
|
|
type mod_global_t;
|
|
|
|
optional {
|
|
require {
|
|
class msg { send receive };
|
|
}
|
|
|
|
type mod_opt_t;
|
|
type a_mod_t;
|
|
type b_mod_t;
|
|
allow a_mod_t b_mod_t: msg { send receive };
|
|
}
|