blob: 9b0cb0198771253bab17e4380e04f02fb71e5f79 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
module exim-custom 1.0;
require {
type sysctl_crypto_t;
type exim_t;
class dir search;
class file { read getattr open };
}
#============= exim_t ==============
allow exim_t sysctl_crypto_t:dir search;
allow exim_t sysctl_crypto_t:file { read getattr open };
|