diff options
author | François Andriot <albator78@libertysurf.fr> | 2024-01-13 14:05:34 +0100 |
---|---|---|
committer | François Andriot <albator78@libertysurf.fr> | 2024-01-13 14:05:34 +0100 |
commit | 77a683a7fa948a02541c27bbeb873fab1d863607 (patch) | |
tree | aa7a04e465afb705d3eeccd676ce8b699befc5ad /redhat/core/tdebase | |
parent | 1ea737d7fb70c48dee90597dd2fb8bb521f55fec (diff) | |
download | tde-packaging-77a683a7fa948a02541c27bbeb873fab1d863607.tar.gz tde-packaging-77a683a7fa948a02541c27bbeb873fab1d863607.zip |
RPM: fedora39: update build scripts
Signed-off-by: François Andriot <albator78@libertysurf.fr>
Diffstat (limited to 'redhat/core/tdebase')
-rw-r--r-- | redhat/core/tdebase/tdm.fc39.te | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/redhat/core/tdebase/tdm.fc39.te b/redhat/core/tdebase/tdm.fc39.te index afe6de52a..3278f6ac9 100644 --- a/redhat/core/tdebase/tdm.fc39.te +++ b/redhat/core/tdebase/tdm.fc39.te @@ -2,10 +2,27 @@ module tdm 1.0; require { + type etc_t; type fprintd_t; type init_t; + type tmp_t; + type unconfined_service_t; + type unconfined_t; + type var_run_t; + type xdm_t; + class capability2 mac_admin; class dbus send_msg; + class fifo_file { getattr open read setattr }; + class file { getattr lock map open read unlink write }; + class lnk_file unlink; + class process transition; } -#============= fprintd_t ============== allow fprintd_t init_t:dbus send_msg; +allow unconfined_service_t unconfined_t:process transition; +allow unconfined_t self:capability2 mac_admin; +allow xdm_t etc_t:file write; +allow xdm_t tmp_t:fifo_file { getattr open read setattr }; +allow xdm_t tmp_t:file { map open unlink }; +allow xdm_t tmp_t:lnk_file unlink; +allow xdm_t var_run_t:file { getattr lock open read write }; |