diff options
author | John Turner <jturner.usa@gmail.com> | 2025-08-20 18:15:24 -0400 |
---|---|---|
committer | John Turner <jturner.usa@gmail.com> | 2025-08-20 22:08:42 -0400 |
commit | bb228574d78232d407b78f90faf39fff28cb6c5b (patch) | |
tree | 8221331e8f837d6d4eafa9b55f2b471f0d442f06 /src/file/meson.build | |
parent | d423f2bca3f9161c3c9abd58898e8cc3744a0832 (diff) | |
download | selinux-policy-bb228574d78232d407b78f90faf39fff28cb6c5b.tar.gz |
rework how user files work
Instead of assuming all user files exist under $HOME, we create a
.file.user module and typeattribute. This allows user files to exist
in places outside of $HOME. Also we changed filecon so that $HOME
itself is user.home.file rather than home.file.
Diffstat (limited to 'src/file/meson.build')
-rw-r--r-- | src/file/meson.build | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/file/meson.build b/src/file/meson.build index c3d21ab..7ce9130 100644 --- a/src/file/meson.build +++ b/src/file/meson.build @@ -14,6 +14,7 @@ modules += files( 'secfile.cil', 'tmpfile.cil', 'tmpfsfile.cil', + 'userfile.cil', 'varfile.cil', ) @@ -26,3 +27,4 @@ subdir('runfile') subdir('tmpfile') subdir('tmpfsfile') subdir('varfile') +subdir('userfile') |