source: MondoRescue/trunk/mondo/mondo/restore-scripts/mondo/unmount-me@ 1

Last change on this file since 1 was 1, checked in by bcornec, 19 years ago

Initial import from latest mondo-2.04_cvs_20050503/mindi-1.04_cvs_20050503 on http://www.mondorescue.org

File size: 440 bytes
RevLine 
[1]1#!/bin/sh
2
3mountlist=/tmp/mountlist.txt
4
5if [ "$#" -ne "0" ] ;then
6 echo "unmount-me <no params>"
7 echo "...mountlist is assumed to be at $mountlist"
8 exit 1
9fi
10
11#unmount-subroutine-me < $mountlist
12#unmount-subroutine-me < $mountlist
13
14#for j in 1 2 ; do
15for i in `mount | grep /mnt/RESTORING | cut -d' ' -f3 | sort -r`; do
16 umount $i
17done
18
19for i in `cat /proc/swaps | cut -d' ' -f1 | grep /dev`; do
20 swapoff $i
21done
22
23exit 0
24
Note: See TracBrowser for help on using the repository browser.