]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - src/install+setup/install/mountdest.sh
gleich die Korrektur hinterher
[people/pmueller/ipfire-2.x.git] / src / install+setup / install / mountdest.sh
CommitLineData
ee78a5ef
MT
1#!/bin/sh
2
3echo "Scanning for possible destination drives"
4
5# scan IDE devices
6echo "--> IDE"
7for DEVICE in $(kudzu -qps -t 30 -c HD -b IDE | grep device: | cut -d ' ' -f 2 | sort | uniq); do
8 echo -n "---> $DEVICE"
9 mount /dev/${DEVICE}1 /harddisk 2> /dev/null
e3f4dd9c 10 if [ -n "$(ls /harddisk/ipfire-*.tbz2 2>/dev/null)" ]; then
ee78a5ef 11 umount /harddisk 2> /dev/null
e3f4dd9c 12 echo "${DEVICE} is source drive - skipping"
ee78a5ef
MT
13 continue
14 else
15 umount /harddisk 2> /dev/null
16 echo -n "$DEVICE" > /tmp/dest_device
2894c0d6 17 echo "${DEVICE} - yes, it is our destination"
ee78a5ef
MT
18 exit 0
19 fi
20done
21
22# scan USB/SCSI devices
23echo "--> USB/SCSI"
24for DEVICE in $(kudzu -qps -t 30 -c HD -b SCSI | grep device: | cut -d ' ' -f 2 | sort | uniq); do
25 echo -n "---> $DEVICE"
26 mount /dev/${DEVICE}1 /harddisk 2> /dev/null
e3f4dd9c 27 if [ -n "$(ls /harddisk/ipfire-*.tbz2 2>/dev/null)" ]; then
ee78a5ef 28 umount /harddisk 2> /dev/null
e3f4dd9c 29 echo "${DEVICE} is source drive - skipping"
ee78a5ef
MT
30 continue
31 else
32 umount /harddisk 2> /dev/null
33 echo -n "$DEVICE" > /tmp/dest_device
2894c0d6 34 echo "${DEVICE} - yes, it is our destination"
ee78a5ef
MT
35 exit 1
36 fi
37done
38
56b548f1
MT
39# scan RAID devices
40echo "--> RAID"
41for DEVICE in $(kudzu -qps -t 30 -c HD -b RAID | grep device: | cut -d ' ' -f 2 | sort | uniq); do
42 echo -n "---> $DEVICE"
43 mount /dev/${DEVICE}p1 /harddisk 2> /dev/null
e3f4dd9c 44 if [ -n "$(ls /harddisk/ipfire-*.tbz2 2>/dev/null)" ]; then
56b548f1 45 umount /harddisk 2> /dev/null
e3f4dd9c 46 echo "${DEVICE} is source drive - skipping"
56b548f1
MT
47 echo " is source drive"
48 continue
49 else
50 umount /harddisk 2> /dev/null
51 echo -n "$DEVICE" > /tmp/dest_device
2894c0d6 52 echo "${DEVICE} - yes, it is our destination"
56b548f1
MT
53 exit 2
54 fi
55done
56
ee78a5ef 57exit 10 # Nothing found