You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
203 B
14 lines
203 B
3 years ago
|
#!/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
|