a7199c141c
Kdump service will create kdump initramfs when needed, but it won't clean up the kdump initramfs on kernel uninstall. So create a kernel install hook to do the clean up job. Signed-off-by: Kairui Song <kasong@redhat.com> Acked-by: Dave Young <dyoung@redhat.com>
31 lines
549 B
Bash
Executable File
31 lines
549 B
Bash
Executable File
#!/usr/bin/bash
|
|
|
|
COMMAND="$1"
|
|
KERNEL_VERSION="$2"
|
|
BOOT_DIR_ABS="$3"
|
|
KERNEL_IMAGE="$4"
|
|
|
|
if ! [[ ${KERNEL_INSTALL_MACHINE_ID-x} ]]; then
|
|
exit 0
|
|
fi
|
|
|
|
if [[ -d "$BOOT_DIR_ABS" ]]; then
|
|
KDUMP_INITRD="initrdkdump"
|
|
else
|
|
BOOT_DIR_ABS="/boot"
|
|
KDUMP_INITRD="initramfs-${KERNEL_VERSION}kdump.img"
|
|
fi
|
|
|
|
ret=0
|
|
case "$COMMAND" in
|
|
add)
|
|
# Do nothing, kdump initramfs is strictly host only
|
|
# and managed by kdump service
|
|
;;
|
|
remove)
|
|
rm -f -- "$BOOT_DIR_ABS/$KDUMP_INITRD"
|
|
ret=$?
|
|
;;
|
|
esac
|
|
exit $ret
|