-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Files being written as root user instead of using PGID and PUID variables #10
Comments
@robflate The problem still exists today but I have managed to "make an arrangement" by changing one line of the script "/bliss/bliss-runner.sh". The user created with the PGID and PUID passed is the user "abc":
Then, in the script I have changed "sh /bliss/bin/bliss.sh" for "su -s /bin/sh abc -c /bliss/bin/bliss.sh"
And then Bliss is executed with the user abc:
The abc user can create the config directory and add and edit the files:
PD: Sorry if the answer is too long, I wanted to explain everything well. |
I've set the env vars
PGID
andPUID
to my local user but Bliss is saving cover art files as the root user.How can I fix this? Thanks.
The text was updated successfully, but these errors were encountered: