Description of problem: In 98-kexec.rules, we still use /etc/init.d/kdump to start/restart kdump service, which should be changed to /usr/bin/kdumpctl. Version-Release number of selected component (if applicable): How reproducible: Steps to Reproduce: 1. 2. 3. Actual results: Expected results: Additional info:
Should use systemctl to control the service, something like below: diff --git a/98-kexec.rules b/98-kexec.rules index 8b47671..5f0d56f 100644 --- a/98-kexec.rules +++ b/98-kexec.rules @@ -1,4 +1,4 @@ -SUBSYSTEM=="cpu", ACTION=="online", PROGRAM="/etc/init.d/kdump restart" -SUBSYSTEM=="cpu", ACTION=="offline", PROGRAM="/etc/init.d/kdump restart" -SUBSYSTEM=="memory", ACTION=="add", PROGRAM="/etc/init.d/kdump restart" -SUBSYSTEM=="memory", ACTION=="remove", PROGRAM="/etc/init.d/kdump restart" +SUBSYSTEM=="cpu", ACTION=="online", PROGRAM="/bin/systemctl restart kdump.service" +SUBSYSTEM=="cpu", ACTION=="offline", PROGRAM="/bin/systemctl restart kdump.service" +SUBSYSTEM=="memory", ACTION=="add", PROGRAM="/bin/systemctl restart kdump.service" +SUBSYSTEM=="memory", ACTION=="remove", PROGRAM="/bin/systemctl restart kdump.service"
This package has changed ownership in the Fedora Package Database. Reassigning to the new owner of this component.
*** Bug 827152 has been marked as a duplicate of this bug. ***