diff options
author | Alan Conway <aconway@apache.org> | 2010-08-13 20:41:33 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2010-08-13 20:41:33 +0000 |
commit | d5887af51e4faec4f70260386731b38cfa3edda9 (patch) | |
tree | 20b7da3107f7537530889b0ece8df349fa20308e | |
parent | 561302f55688b004c8de0a428a048d416247bc78 (diff) | |
download | qpid-python-d5887af51e4faec4f70260386731b38cfa3edda9.tar.gz |
Fix qpiddevel selinux policy to work with valgrind.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@985356 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | cpp/etc/selinux/qpiddevel.te | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cpp/etc/selinux/qpiddevel.te b/cpp/etc/selinux/qpiddevel.te index 5b280288f7..95e1c934b6 100644 --- a/cpp/etc/selinux/qpiddevel.te +++ b/cpp/etc/selinux/qpiddevel.te @@ -11,6 +11,7 @@ policy_module(qpiddevel, 1.1) gen_require(` type unconfined_t; + type unconfined_execmem_t; type ccs_t; class capability sys_admin; class sem { write unix_read unix_write associate read destroy }; @@ -28,4 +29,7 @@ optional_policy(` allow aisexec_t self:capability sys_admin; allow aisexec_t unconfined_t:sem { read write unix_read unix_write associate destroy }; allow aisexec_t unconfined_t:shm { read write unix_read unix_write associate destroy }; + allow aisexec_t unconfined_execmem_t:sem { write unix_read unix_write associate read destroy }; + allow aisexec_t unconfined_execmem_t:shm { write unix_read unix_write associate read destroy }; + ') |