]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blob - src/install+setup/install/mountdest.sh
af02ccc493936405a5dc2c35d4be432758e48e11
[people/pmueller/ipfire-2.x.git] / src / install+setup / install / mountdest.sh
1 #!/bin/sh
2
3 echo "Scanning for possible destination drives"
4
5 # scan IDE devices
6 echo "--> IDE"
7 for 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
10 if [ -e /harddisk/ipfire-*.tbz2 ]; then
11 umount /harddisk 2> /dev/null
12 echo " is source drive"
13 continue
14 else
15 umount /harddisk 2> /dev/null
16 echo -n "$DEVICE" > /tmp/dest_device
17 echo " - yes, it is our destination"
18 exit 0
19 fi
20 done
21
22 # scan USB/SCSI devices
23 echo "--> USB/SCSI"
24 for 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
27 if [ -e /harddisk/ipfire-*.tbz2 ]; then
28 umount /harddisk 2> /dev/null
29 echo " is source drive"
30 continue
31 else
32 umount /harddisk 2> /dev/null
33 echo -n "$DEVICE" > /tmp/dest_device
34 echo " - yes, it is our destination"
35 exit 1
36 fi
37 done
38
39 exit 10 # Nothing found