]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - src/install+setup/install/mountsource.sh
Stopp source device scan after first detection
[people/pmueller/ipfire-2.x.git] / src / install+setup / install / mountsource.sh
CommitLineData
72d80898 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###############################################################################
72d80898 21
72d80898
MT
22echo "Scanning source media"
23
24# scan CDROM devices
ee78a5ef 25for DEVICE in $(kudzu -qps -t 30 -c CDROM | grep device: | cut -d ' ' -f 2 | sort | uniq); do
149a26a8
MT
26 mount /dev/${DEVICE} /cdrom 2> /dev/null
27 if [ -n "$(ls /cdrom/ipfire-*.tbz2 2>/dev/null)" ]; then
28 echo -n ${DEVICE} > /tmp/source_device
29 echo "Found tarball on ${DEVICE}"
03df106a 30 exit 0
149a26a8
MT
31 else
32 echo "Found no tarballs on ${DEVICE} - SKIP"
33 fi
34 umount /cdrom 2> /dev/null
72d80898
MT
35done
36
03df106a 37# scan HD device part1 (usb sticks, etc.)
256d83db 38for DEVICE in $(kudzu -qps -t 30 -c HD | grep device: | cut -d ' ' -f 2 | sort | uniq); do
03df106a 39 mount /dev/${DEVICE}1 /cdrom 2> /dev/null
256d83db 40 if [ -n "$(ls /cdrom/ipfire-*.tbz2 2>/dev/null)" ]; then
03df106a
AF
41 echo -n ${DEVICE}1 > /tmp/source_device
42 echo "Found tarball on ${DEVICE}1"
43 exit 0
256d83db 44 else
03df106a 45 echo "Found no tarballs on ${DEVICE}1 - SKIP"
256d83db
AF
46 fi
47 umount /cdrom 2> /dev/null
48done
49
03df106a 50# scan HD device unpart (usb sticks, etc.)
9efeb2c4 51for DEVICE in $(kudzu -qps -t 30 -c HD | grep device: | cut -d ' ' -f 2 | sort | uniq); do
03df106a 52 mount /dev/${DEVICE} /cdrom 2> /dev/null
149a26a8 53 if [ -n "$(ls /cdrom/ipfire-*.tbz2 2>/dev/null)" ]; then
03df106a
AF
54 echo -n ${DEVICE} > /tmp/source_device
55 echo "Found tarball on ${DEVICE}"
56 exit 0
149a26a8 57 else
149a26a8
MT
58 echo "Found no tarballs on ${DEVICE} - SKIP"
59 fi
60 umount /cdrom 2> /dev/null
72d80898
MT
61done
62
03df106a 63exit 10