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