-
Notifications
You must be signed in to change notification settings - Fork 401
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
fix(systemd-resolved): add systemd-resolve user #1657
Conversation
@Cornelicorn hmm we dont parse/grep and or otherwise use users from /etc/passwd anymore anyways something must have changed in systemd upstream ( like systemd finally splitting all their users into seperated sysusers files, which then requires fixes in more places since probably more users are missing ), all the systemd users should currently be provided via systemd-sysusers module, which this module is dependent upon. If systemd upstream has done the right thing ( by splitting it's users into seperated sysuser files ) then we need to try to included that sd-resolve sysuser file from the underlying OS probably with a fallback on our own include sd-resolve sysuser file if the sysuser file is not found. That fix requires adding |
Superseeded by #1658 |
Somewhat permature closure since we still need to include the new systemd-resolve.conf file otherwise this will just break again with the next sd release |
Ah right, forgot about the change in systemd sysuser configs. But maybe this should be tackled in a new PR together with all other sysuser configs. |
Agreed |
Fixes the regression introduced by systemd/systemd#20056 As discussed in dracutdevs#1656 and dracutdevs#1657
Fixes the regression introduced by systemd/systemd#20056 As discussed in #1656 and #1657
Fixes the regression introduced by systemd/systemd#20056 As discussed in dracutdevs#1656 and dracutdevs#1657 (cherry picked from commit fec93bb)
Fixes the regression introduced by systemd/systemd#20056 As discussed in dracutdevs#1656 and dracutdevs#1657 (cherry picked from commit fec93bb)
This pull request adds the
systemd-resolve
user to initramfs when using thesystemd-resolved
module.Changes
Checklist
Fixes #1656