From 59d7a39994ea975a36aec0f7ead300aa8403a0b5 Mon Sep 17 00:00:00 2001 From: Gerardo Exequiel Pozzi Date: Wed, 17 Feb 2010 18:31:31 -0300 Subject: Drop to recovery shell when mounting main media filesystem fails. Signed-off-by: Gerardo Exequiel Pozzi --- archiso/hooks/archiso | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to 'archiso') diff --git a/archiso/hooks/archiso b/archiso/hooks/archiso index 7b4d756..aac2d21 100644 --- a/archiso/hooks/archiso +++ b/archiso/hooks/archiso @@ -85,16 +85,24 @@ archiso_mount_handler() { if mount -r -t "${FSTYPE}" ${archisodevice} /bootmnt > /dev/null 2>&1; then if [ -e "${isomounts}" ]; then echo "SUCCESS: Mounted archiso volume successfully." + fserror="0" else echo "ERROR: Mounting was successful, but the ${isomounts} file does not exist." - exit 1 + fserror="1" fi else echo "ERROR; Failed to mount ${archisodevice} (FS is ${FSTYPE})" - exit 1 + fserror="1" fi else echo "ERROR: ${archisodevice} found, but the filesystem type is unknown." + fserror="1" + fi + + if [ "${fserror}" = "1" ]; then + echo " Falling back to interactive prompt" + echo " You can try to fix the problem manually, log out when you are finished" + launch_interactive_shell fi msg ":: Mounting root (aufs) filesystem" -- cgit v1.2.3-54-g00ecf