]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - src/install+setup/install/mountdest.sh
Ein Paar Dateien fuer die GPLv3 angepasst.
[people/pmueller/ipfire-2.x.git] / src / install+setup / install / mountdest.sh
CommitLineData
ee78a5ef 1#!/bin/sh
70df8302
MT
2###############################################################################
3# #
4# IPFire.org - A linux based firewall #
5# Copyright (C) 2007 Michael Tremer & Christian Schmidt #
6# #
7# This program is free software: you can redistribute it and/or modify #
8# it under the terms of the GNU General Public License as published by #
9# the Free Software Foundation, either version 3 of the License, or #
10# (at your option) any later version. #
11# #
12# This program is distributed in the hope that it will be useful, #
13# but WITHOUT ANY WARRANTY; without even the implied warranty of #
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
15# GNU General Public License for more details. #
16# #
17# You should have received a copy of the GNU General Public License #
18# along with this program. If not, see <http://www.gnu.org/licenses/>. #
19# #
20###############################################################################
ee78a5ef
MT
21
22echo "Scanning for possible destination drives"
23
24# scan IDE devices
25echo "--> IDE"
26for DEVICE in $(kudzu -qps -t 30 -c HD -b IDE | grep device: | cut -d ' ' -f 2 | sort | uniq); do
149a26a8
MT
27 mount /dev/${DEVICE}1 /harddisk 2> /dev/null
28 if [ -n "$(ls /harddisk/ipfire-*.tbz2 2>/dev/null)" ]; then
ee78a5ef 29 umount /harddisk 2> /dev/null
149a26a8 30 echo "${DEVICE} is source drive - SKIP"
ee78a5ef 31 continue
149a26a8
MT
32 else
33 umount /harddisk 2> /dev/null
34 echo -n "$DEVICE" > /tmp/dest_device
35 echo "${DEVICE} - yes, it is our destination"
36 exit 0
ee78a5ef
MT
37 fi
38done
39
40# scan USB/SCSI devices
41echo "--> USB/SCSI"
42for DEVICE in $(kudzu -qps -t 30 -c HD -b SCSI | grep device: | cut -d ' ' -f 2 | sort | uniq); do
ee78a5ef 43 mount /dev/${DEVICE}1 /harddisk 2> /dev/null
149a26a8 44 if [ -n "$(ls /harddisk/ipfire-*.tbz2 2>/dev/null)" ]; then
ee78a5ef 45 umount /harddisk 2> /dev/null
149a26a8 46 echo "${DEVICE} is source drive - SKIP"
ee78a5ef 47 continue
149a26a8
MT
48 else
49 umount /harddisk 2> /dev/null
50 echo -n "$DEVICE" > /tmp/dest_device
51 echo "${DEVICE} - yes, it is our destination"
52 exit 1
ee78a5ef
MT
53 fi
54done
55
56b548f1
MT
56# scan RAID devices
57echo "--> RAID"
58for DEVICE in $(kudzu -qps -t 30 -c HD -b RAID | grep device: | cut -d ' ' -f 2 | sort | uniq); do
149a26a8
MT
59 mount /dev/${DEVICE}p1 /harddisk 2> /dev/null
60 if [ -n "$(ls /harddisk/ipfire-*.tbz2 2>/dev/null)" ]; then
56b548f1 61 umount /harddisk 2> /dev/null
149a26a8 62 echo "${DEVICE} is source drive - SKIP"
56b548f1 63 continue
149a26a8 64 else
56b548f1
MT
65 umount /harddisk 2> /dev/null
66 echo -n "$DEVICE" > /tmp/dest_device
149a26a8 67 echo "${DEVICE} - yes, it is our destination"
56b548f1
MT
68 exit 2
69 fi
70done
71
ee78a5ef 72exit 10 # Nothing found