a7ead187a4
Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=2048690 To indicate they are for internal use only, underscore them. Reported-by: rcheerla@redhat.com Signed-off-by: Coiby Xu <coxu@redhat.com> Reviewed-by: Lichen Liu <lichenliu@redhat.com>
14 lines
204 B
Bash
Executable File
14 lines
204 B
Bash
Executable File
#!/usr/bin/bash
|
|
|
|
COMMAND="$1"
|
|
KERNEL_VERSION="$2"
|
|
KDUMP_INITRD_DIR_ABS="$3"
|
|
KERNEL_IMAGE="$4"
|
|
|
|
case "$COMMAND" in
|
|
add)
|
|
kdumpctl _reset-crashkernel-for-installed_kernel "$KERNEL_VERSION"
|
|
exit 0
|
|
;;
|
|
esac
|