]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blobdiff - src/install+setup/install/mountsource.sh
Don't remove old kernel version at update of linux-xen
[people/pmueller/ipfire-2.x.git] / src / install+setup / install / mountsource.sh
index 726ada8c522bde72b6127f17823bda260495ea5a..5c654a11f1ed88b24e7ebb413f3ddc3f87fd05ff 100644 (file)
@@ -1,4 +1,23 @@
 #!/bin/sh
+###############################################################################
+#                                                                             #
+# IPFire.org - A linux based firewall                                         #
+# Copyright (C) 2007  Michael Tremer & Christian Schmidt                      #
+#                                                                             #
+# This program is free software: you can redistribute it and/or modify        #
+# it under the terms of the GNU General Public License as published by        #
+# the Free Software Foundation, either version 3 of the License, or           #
+# (at your option) any later version.                                         #
+#                                                                             #
+# This program is distributed in the hope that it will be useful,             #
+# but WITHOUT ANY WARRANTY; without even the implied warranty of              #
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the               #
+# GNU General Public License for more details.                                #
+#                                                                             #
+# You should have received a copy of the GNU General Public License           #
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.       #
+#                                                                             #
+###############################################################################
 
 echo "Scanning source media"
 
@@ -8,28 +27,37 @@ for DEVICE in $(kudzu -qps -t 30 -c CDROM | grep device: | cut -d ' ' -f 2 | sor
                if [ -n "$(ls /cdrom/ipfire-*.tbz2 2>/dev/null)" ]; then
                        echo -n ${DEVICE} > /tmp/source_device
                        echo "Found tarball on ${DEVICE}"
+                       exit 0
                else
                        echo "Found no tarballs on ${DEVICE} - SKIP"
                fi
                umount /cdrom 2> /dev/null
 done
 
-# scan HD device (usb sticks, etc.)
+# scan HD device part1 (usb sticks, etc.)
 for DEVICE in $(kudzu -qps -t 30 -c HD | grep device: | cut -d ' ' -f 2 | sort | uniq); do
                mount /dev/${DEVICE}1 /cdrom 2> /dev/null
                if [ -n "$(ls /cdrom/ipfire-*.tbz2 2>/dev/null)" ]; then
                        echo -n ${DEVICE}1 > /tmp/source_device
+                       echo "Found tarball on ${DEVICE}1"
+                       exit 0
+               else
+                       echo "Found no tarballs on ${DEVICE}1 - SKIP"
+               fi
+               umount /cdrom 2> /dev/null
+done
+
+# scan HD device unpart (usb sticks, etc.)
+for DEVICE in $(kudzu -qps -t 30 -c HD | grep device: | cut -d ' ' -f 2 | sort | uniq); do
+               mount /dev/${DEVICE} /cdrom 2> /dev/null
+               if [ -n "$(ls /cdrom/ipfire-*.tbz2 2>/dev/null)" ]; then
+                       echo -n ${DEVICE} > /tmp/source_device
                        echo "Found tarball on ${DEVICE}"
+                       exit 0
                else
-                       umount /cdrom 2> /dev/null
                        echo "Found no tarballs on ${DEVICE} - SKIP"
                fi
                umount /cdrom 2> /dev/null
 done
 
-if [ -e "/tmp/source_device" ]; then
-       mount /dev/$(cat /tmp/source_device) /cdrom 2> /dev/null
-       exit 0
-else
-       exit 10
-fi
+exit 10