-
Notifications
You must be signed in to change notification settings - Fork 37
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
Issue with PGID since last patch #49
Comments
quick and dirty solution :
:) |
Worked perfectly, thanks! |
I'm getting this same error using docker compose on my Synology. Do I fix it the same way? |
This gets rid of the error, but it creates files with user 1000 and group "nogroup". Is there a way to use group 1000 as well? e: I entered the container e2: that did not hold for newly converted items. They still have a 'nogroup' group when the completed m4bs end up in the untagged folder. e3: modifited the run file to create the group before the user and it's working great now. Submitted a PR. |
Hello,
Since I've updated the container, I've been having some issues around the GID. I see in the logs:
adduser: The GID 1000 does not exist.
If I try to manually add another user replicating the command in runscript.sh, I get the same error around GID 1000:
adduser --uid 1001 autom4b2 --gid 1000 adduser: The GID 1000 does not exist.
Looking at the revision #43 - I think the GID needs to be created before the adduser command. If I create the group first with
groupadd autom4b --gid 1000
, I'm able to run it without issue.Appreciate your help looking into this!
Thanks,
KC
The text was updated successfully, but these errors were encountered: