From a046e8a6abf0e28b836cf713625e8e2044bafed1 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Fri, 14 Nov 2014 00:02:41 +0100 Subject: [PATCH] installer: Only drop to a debug shell after a segmentation fault --- src/installer/dracut-module/run-installer.sh | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/installer/dracut-module/run-installer.sh b/src/installer/dracut-module/run-installer.sh index 1a7bd13721..b62cfa996a 100644 --- a/src/installer/dracut-module/run-installer.sh +++ b/src/installer/dracut-module/run-installer.sh @@ -22,10 +22,7 @@ echo "Loading Installer..." ret=$? case "${ret}" in - 0) - # The installer has finished without a problem. - ;; - *) + 139) echo "The installer has crashed. You will be dropped to a debugging shell" /bin/bash --login ;; -- 2.39.2