]> git.ipfire.org Git - people/teissler/ipfire-2.x.git/blame - src/install+setup/install/mountsource.sh
Updated portmap to Version 6.0.
[people/teissler/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}"
30 else
31 echo "Found no tarballs on ${DEVICE} - SKIP"
32 fi
33 umount /cdrom 2> /dev/null
72d80898
MT
34done
35
36# scan HD device (usb sticks, etc.)
9efeb2c4 37for DEVICE in $(kudzu -qps -t 30 -c HD | grep device: | cut -d ' ' -f 2 | sort | uniq); do
149a26a8
MT
38 mount /dev/${DEVICE}1 /cdrom 2> /dev/null
39 if [ -n "$(ls /cdrom/ipfire-*.tbz2 2>/dev/null)" ]; then
a3d6c878 40 echo -n ${DEVICE}1 > /tmp/source_device
149a26a8
MT
41 echo "Found tarball on ${DEVICE}"
42 else
43 umount /cdrom 2> /dev/null
44 echo "Found no tarballs on ${DEVICE} - SKIP"
45 fi
46 umount /cdrom 2> /dev/null
72d80898
MT
47done
48
3485f9a2 49if [ -e "/tmp/source_device" ]; then
149a26a8
MT
50 mount /dev/$(cat /tmp/source_device) /cdrom 2> /dev/null
51 exit 0
e3f4dd9c 52else
149a26a8 53 exit 10
e3f4dd9c 54fi