How do I find all the SELinux policies used for Google Chrome on Fedora Linux?
Asked
Active
Viewed 358 times
1 Answers
2
Are you looking for file contexts? A simple grep
ought to find them.
grep -e chrome -e chromium /etc/selinux/targeted/contexts/files/file_contexts*
If you need policy sources from which policies were built, you can find those in the source code on GitHub or by getting the corresponding SRPM for your installed package.

Michael Hampton
- 244,070
- 43
- 506
- 972