source: MondoRescue/branches/3.2/mondo/src/restore-scripts/mondo/mr-unmount-me@ 3542

Last change on this file since 3542 was 3542, checked in by Bruno Cornec, 8 years ago
  • Rename all mondorestore scripts with the mr- prefix and adapt callers
  • Place these scripts in /usr/bin on the restore media
  • Fix a mindi bug where these scripts were not copied anymore with previous modifications around removal of cd
  • Property svn:keywords set to Id
  • Property svn:unix-mode set to 755
File size: 356 bytes
Line 
1#!/bin/sh
2#
3# $Id: mr-unmount-me 3542 2016-03-24 16:48:03Z bruno $
4#
5
6mountlist=/tmp/mountlist.txt
7
8if [ "$#" -ne "0" ] ;then
9 echo "mr-unmount-me <no params>"
10 echo "...mountlist is assumed to be at $mountlist"
11 exit 1
12fi
13
14for i in `mount | grep /mnt/RESTORING | cut -d' ' -f3 | sort -r`; do
15 umount $i
16done
17
18for i in `cut -d' ' -f1 /proc/swaps | grep /dev`; do
19 swapoff $i
20done
21
22exit 0
23
Note: See TracBrowser for help on using the repository browser.