source: MondoRescue/trunk/mondo/mondo/restore-scripts/mondo/mount-me@ 729

Last change on this file since 729 was 687, checked in by bcornec, 18 years ago

merge -r671:686 $SVN_M/branches/stable

  • Property svn:keywords set to Id
  • Property svn:unix-mode set to 755
File size: 505 bytes
Line 
1#!/bin/sh
2
3mountlist=/tmp/mountlist.txt
4
5if [ "$#" -ne "0" ] ;then
6 echo "mount-me <no params>"
7 echo "...mountlist is assumed to be at $mountlist"
8 exit 1
9fi
10
11if [ ! -f "$mountlist" ] ; then
12 echo "I cannot find the mountlist '$mountlist'. Aborting."
13 exit 1
14fi
15
16paths=`grep -vE " raid |lvm lvm" $mountlist | tr -s ' ' ' ' | cut -d' ' -f2 | sort`
17> $mountlist.sorted
18for i in $paths ; do
19 grep " $i " $mountlist >> $mountlist.sorted
20done
21mount-subroutine-me < $mountlist.sorted
22exit $?
Note: See TracBrowser for help on using the repository browser.