diff options
author | Alan Conway <aconway@apache.org> | 2010-07-28 20:32:36 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2010-07-28 20:32:36 +0000 |
commit | 184c59fe476c790810382b9c44a716724cf6e834 (patch) | |
tree | c9e67f0e652ba1f69bebf4e8cf097ecff5505597 | |
parent | bd8e501316f5c8860cca1205935a6151bebb5b56 (diff) | |
download | qpid-python-184c59fe476c790810382b9c44a716724cf6e834.tar.gz |
Updated developer SELinux policy to also allow tests run under valgrind.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@980198 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | cpp/etc/selinux/qpiddevel.te | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cpp/etc/selinux/qpiddevel.te b/cpp/etc/selinux/qpiddevel.te index 092b9fc203..0968f6eeb1 100644 --- a/cpp/etc/selinux/qpiddevel.te +++ b/cpp/etc/selinux/qpiddevel.te @@ -12,6 +12,7 @@ module qpiddevel 1.0; require { type unconfined_t; type aisexec_t; + type unconfined_execmem_t; class capability sys_admin; class sem { write unix_read unix_write associate read destroy }; class shm { unix_read write unix_write associate read destroy }; @@ -21,3 +22,5 @@ require { allow aisexec_t self:capability sys_admin; allow aisexec_t unconfined_t:sem { write unix_read unix_write associate read destroy }; allow aisexec_t unconfined_t:shm { unix_read write unix_write associate read 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 }; |