From 8b4b7bf808117ccf3a4be5c9dc16ad1f008659a3 Mon Sep 17 00:00:00 2001 From: Coiby Xu Date: Fri, 26 Mar 2021 10:22:09 +0800 Subject: [PATCH] Don't use die in dracut-module-setup.sh die (in dracut-lib.sh) is supposed to be used in the initramfs environment. Signed-off-by: Coiby Xu Acked-by: Kairui Song --- dracut-module-setup.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/dracut-module-setup.sh b/dracut-module-setup.sh index affd711..af8336c 100755 --- a/dracut-module-setup.sh +++ b/dracut-module-setup.sh @@ -334,7 +334,10 @@ kdump_setup_znet() { kdump_get_ip_route() { local _route=$(/sbin/ip -o route get to $1 2>&1) - [ $? != 0 ] && die "Bad kdump network destination: $1" + if [[ $? != 0 ]]; then + derror "Bad kdump network destination: $1" + exit 1 + fi echo $_route }