mirror of
https://github.com/SELinuxProject/selinux
synced 2025-01-12 08:29:26 +00:00
21 lines
252 B
Plaintext
21 lines
252 B
Plaintext
module modreq_obj_global 1.0;
|
|
|
|
require {
|
|
class file { read };
|
|
}
|
|
|
|
type mod_global_t;
|
|
|
|
type mod_foo_t;
|
|
type mod_bar_t;
|
|
|
|
optional {
|
|
require {
|
|
class sem { create destroy };
|
|
}
|
|
|
|
type mod_opt_t;
|
|
|
|
allow mod_foo_t mod_bar_t : sem { create destroy };
|
|
}
|