-
Notifications
You must be signed in to change notification settings - Fork 44
DLPX-93890 LTS 24.04: test_add_remove_route crashes with dracut-install core file #533
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
DLPX-93890 LTS 24.04: test_add_remove_route crashes with dracut-install core file #533
Conversation
894496e
to
8d6d8aa
Compare
FWIW, I think this is a bug in the upstream service definition.. and likely due to the fact that the new service on develop has
|
I don't understand. The
As such, it follows that |
Then, why isn't |
I think you answered my question in your latest comment relating to |
yea.. I haven't verified, but perhaps kind of speculating, but I think that's matching the behavior I'm seeing.. |
The "kdump-tools" service depends on local filesystem's being mounted, so that it can write to "/tmp". Even though that service's definitation states it should run "After=local-fs.target", it doesn't appear to also "Requires=local-fs.target", so it can end up running before the local filesystems are ready.Problem
The solution here, is to add an override file for the service, to add the necessary "Requires=local-fs.target" declaration.Solution
Testing Done
git-ab-pre-push
is hereI applied this change manually, and verified the service's dependencies now depend on the local filesystems.