Replies: 1 comment
-
Please sow the AVC messages before adding custom policy. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Looking at
I also had issues:
I looked at my SELinux, and just bare with me here.
First I looked at the SELinux Label.
➜ filbot3.github.io git:(main) ✗ > ls -Z content/posts/images/Polyhedral_Frames.png unconfined_u:object_r:user_home_t:s0 content/posts/images/Polyhedral_Frames.png
Then I compared this to a file taht I know to be working.
➜ filbot3.github.io git:(main) ✗ > ls -Z content/posts/changing-up-binary-pass-fail.md unconfined_u:object_r:container_file_t:s0 content/posts/changing-up-binary-pass-fail.md
Notice the
Type
is different:user_home_t
instead ofcontainer_file_t
. I'm runninghugo
from a container to generate content. So I had to change the Type to match.➜ filbot3.github.io git:(main) ✗ > chcon -t container_file_t content/posts/images/Polyhedral_Frames.png
Now I was able to load
hugo
.Hopefully this helps someone.
Beta Was this translation helpful? Give feedback.
All reactions