diff options
author | uckelman <uckelman@nomic.net> | 2010-07-15 13:28:26 +0000 |
---|---|---|
committer | uckelman <uckelman@nomic.net> | 2010-07-15 13:28:26 +0000 |
commit | 8bf43475d437e8fa41bcade5cba830b13f809c7f (patch) | |
tree | 59773ce7859d948f32004a8891274327a6300605 /src | |
parent | 51699f241883605b588609844f35d1e96c905330 (diff) |
Added SELinux policy to let postfix_local run postfix_handoff.pl.
git-svn-id: https://vassalengine.svn.sourceforge.net/svnroot/vassalengine/site-src/trunk@6992 67b53d14-2c14-4ace-a08f-0dab2b34000c
Diffstat (limited to 'src')
-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 }; + |