-
Notifications
You must be signed in to change notification settings - Fork 400
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): explicitly install some libs that will not be statically included #2643
base: master
Are you sure you want to change the base?
Conversation
f08beef
to
75820de
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it'd help to have some of the corresponding systemd commit ids present in the commit message (once merged there).
Anyhow, this looks good to me. I assume you're waiting for the systemd changes to go through before dropping the Draft flag?
{"tls/$_arch/",tls/,"$_arch/",}"libzstd.so.*" \ | ||
{"tls/$_arch/",tls/,"$_arch/",}"liblzma.so.*" | ||
{"tls/$_arch/",tls/,"$_arch/",}"liblzma.so.*" \ | ||
{"tls/$_arch/",tls/,"$_arch/",}"libzstd.so.*" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could $hostonly
images selectively drop some of these modules, depending on systemd-journal
configuration?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I know the default compression is configured at build time, but it can also be set via SYSTEMD_JOURNAL_COMPRESS
env var... I'll take a look
Thanks, that's what I was thinking. I'll remove the draft mark and amend the commit message including those external references if they are merged. |
75820de
to
b802845
Compare
…y included Some required libraries that used to be statically included are in the process to be opened via `dlopen()`. References: - systemd/systemd#31131 - systemd/systemd#31550 - systemd/systemd#32019 Closes dracutdevs#2642
b802845
to
5b4466e
Compare
LGTM. |
Some required libraries that used to be statically included are in the process to be opened via
dlopen()
.Checklist
Closes #2642