Changeset 3706 in MondoRescue for branches/3.3/mondo/src/restore-scripts
- Timestamp:
- Apr 13, 2018, 1:27:58 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.3/mondo/src/restore-scripts/mondo/mr-mount-me
r3542 r3706 17 17 fi 18 18 19 paths=`grep -vE " raid |lvm lvm" $mountlist | tr -s ' ' ' ' | cut -d' ' -f2| sort`19 paths=`grep -vE " raid |lvm lvm" $mountlist | awk '{print $2}' | sort` 20 20 > $mountlist.sorted 21 21 for i in $paths ; do … … 23 23 done 24 24 mr-mount-subroutine-me < $mountlist.sorted 25 exit $? 25 res=$? 26 mount -o bind /proc /mnt/RESTORING/proc 27 mount -o bind /sys /mnt/RESTORING/sys 28 exit $res
Note:
See TracChangeset
for help on using the changeset viewer.