diff options
-rw-r--r-- | src/local.te | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/local.te b/src/local.te new file mode 100644 index 0000000..bb9adbe --- /dev/null +++ b/src/local.te @@ -0,0 +1,11 @@ +module local 1.0; + +require { + type postfix_local_t; + type usr_t; + class file { getattr read open ioctl }; +} + +#============= postfix_local_t ============== +allow postfix_local_t usr_t:file { getattr read open ioctl }; + |