--- trunk/installer-simple/bin/installer.sh.in 2014/01/08 12:13:30 2488 +++ trunk/installer-simple/bin/installer.sh.in 2014/01/08 12:14:37 2489 @@ -102,7 +102,14 @@ mount_rootfs() { - is_mounted --location "${INSTALLROOT}" || mount "${ROOTHDD}" "${INSTALLROOT}" + local retval + + if is_mounted --location "${INSTALLROOT}" + then + echo $"${INSTALLROOT} already mounted" >&2 + else + mount "${ROOTHDD}" "${INSTALLROOT}" || dialog_die $"Could not mount rootfs - drive'${ROOTHDD}' -> '${INSTALLROOT}'" + fi [[ -d ${INSTALLROOT}/boot ]] || install -d ${INSTALLROOT}/boot }