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

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

merge -r 560:587 $SVN_M/branches/stable

  • Property svn:keywords set to Id
  • Property svn:unix-mode set to 755
File size: 516 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 -v " raid " $mountlist | grep -v "lvm lvm" | 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.