71b7a2f47c
Dump capture initramfs needs rebuild after partition migration (LPM). Use servicelog notification mechanism to invoke kdump rebuild after migration. Signed-off-by: Hari Bathini <hbathini@linux.ibm.com> Reviewed-by: Pingfan Liu <piliu@redhat.com> Acked-by: Kairui Song <kasong@redhat.com>
9 lines
110 B
Bash
Executable File
9 lines
110 B
Bash
Executable File
#!/bin/sh
|
|
|
|
systemctl is-active kdump
|
|
if [ $? -ne 0 ]; then
|
|
exit 0
|
|
fi
|
|
|
|
/usr/lib/kdump/kdump-restart.sh
|