From: maniacikarus Date: Tue, 21 Aug 2007 08:40:46 +0000 (+0000) Subject: gleich die Korrektur hinterher X-Git-Tag: v2.3-beta1~466 X-Git-Url: http://git.ipfire.org/?p=people%2Fpmueller%2Fipfire-2.x.git;a=commitdiff_plain;h=2894c0d6ad3c22b591edefcd365e26334f080b42 gleich die Korrektur hinterher git-svn-id: http://svn.ipfire.org/svn/ipfire/trunk@794 ea5c0bd1-69bd-2848-81d8-4f18e57aeed8 --- diff --git a/src/install+setup/install/mountdest.sh b/src/install+setup/install/mountdest.sh index 3c56b8ccc8..c9306bb2f0 100644 --- a/src/install+setup/install/mountdest.sh +++ b/src/install+setup/install/mountdest.sh @@ -14,23 +14,11 @@ for DEVICE in $(kudzu -qps -t 30 -c HD -b IDE | grep device: | cut -d ' ' -f 2 | else umount /harddisk 2> /dev/null echo -n "$DEVICE" > /tmp/dest_device - echo " - yes, it is our destination" + echo "${DEVICE} - yes, it is our destination" exit 0 fi done - mount /dev/${DEVICE}1 /cdrom 2> /dev/null - if [ ]; then - echo -n ${DEVICE} > /tmp/source_device - echo "Found Sources in ${DEVICE}" - else - umount /cdrom 2> /dev/null - echo "Found no Sources in ${DEVICE} skipping" - fi - umount /cdrom 2> /dev/null - - - # scan USB/SCSI devices echo "--> USB/SCSI" for DEVICE in $(kudzu -qps -t 30 -c HD -b SCSI | grep device: | cut -d ' ' -f 2 | sort | uniq); do @@ -43,7 +31,7 @@ for DEVICE in $(kudzu -qps -t 30 -c HD -b SCSI | grep device: | cut -d ' ' -f 2 else umount /harddisk 2> /dev/null echo -n "$DEVICE" > /tmp/dest_device - echo " - yes, it is our destination" + echo "${DEVICE} - yes, it is our destination" exit 1 fi done @@ -61,7 +49,7 @@ for DEVICE in $(kudzu -qps -t 30 -c HD -b RAID | grep device: | cut -d ' ' -f 2 else umount /harddisk 2> /dev/null echo -n "$DEVICE" > /tmp/dest_device - echo " - yes, it is our destination" + echo "${DEVICE} - yes, it is our destination" exit 2 fi done