Changeset 2587 in MondoRescue for branches/2.2.10/mindi/analyze-my-lvm


Ignore:
Timestamp:
Mar 3, 2010, 8:24:24 PM (14 years ago)
Author:
Bruno Cornec
Message:

r3714@localhost: bruno | 2010-03-03 10:42:28 +0100
svk merge -r3649:3678 prj/local-mondorescue/branches/2.2.9


r3666@localhost (orig r2578): bruno | 2010-02-12 13:35:29 +0100

  • Free the sz_devfile fifo for ntfs later as it was used in between, causing a problem to backup NT

FS dev. Fix #392.


r3667@localhost (orig r2579): bruno | 2010-02-12 15:27:07 +0100
analyze-my-lvm now provides an option to call GiveMapperOfdm that can be used in mindi. Solve #395


r3668@localhost (orig r2580): bruno | 2010-02-12 17:12:18 +0100

  • When using excludevs= also exclude from mountlist the devices mentioned. Fix #393.


r3669@localhost (orig r2581): bruno | 2010-02-12 17:15:53 +0100

  • the post install ascript passed with post= should just exists and not be executable. It's now mad

e executable by init. Maybe a fix for #394


r3670@localhost (orig r2582): vicgat | 2010-02-15 19:35:39 +0100


r3671@localhost (orig r2583): bruno | 2010-02-15 20:05:45 +0100

  • Fix reporting when a module is not found (pollutes logs)


r3672@localhost (orig r2584): bruno | 2010-02-15 20:09:23 +0100

  • Adds a missing module for iSCSI support


r3673@localhost (orig r2585): bruno | 2010-02-15 20:45:50 +0100

  • Fix problems of wrongly detected Duplicate mountpoints in case of lvm


r3674@localhost (orig r2586): bruno | 2010-02-16 13:15:38 +0100

  • Avoids error messages from stat in analyze-my-lvm


r3663@athonet (orig r2577): bruno | 2010-02-09 02:08:39 +0100

  • First try to improve OVM support with ocfs2 and Xen modules added


File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2.10/mindi/analyze-my-lvm

    r2576 r2587  
    239239GiveMapperOfdm () {
    240240
    241 major=`stat -c "%t" $1`
    242 minor=`stat -c "%T" $1`
     241major=`stat -c "%t" $1 2> /dev/null`
     242minor=`stat -c "%T" $1 2> /dev/null`
    243243
    244244for i in `ls /dev/mapper/*`; do
     
    325325
    326326# -------------------------------- main -----------------------------------
     327
     328if [ "$1" = "--givemapperofdm" ] ; then
     329    shift
     330    if [ _"$1" != _"" ] ; then
     331        GiveMapperOfdm $1
     332    fi
     333    exit 0
     334fi
     335
     336
    327337which lvmdiskscan 2>/dev/null 2>&1 || Die "lvmdiskscan not found. Won't handle LVM."
    328338if [ -e "/proc/lvm/global" ] && [ "`tr -s '\t' ' ' < /proc/lvm/global | grep "0 VGs 0 PVs 0 LVs"`" != "" ]; then
Note: See TracChangeset for help on using the changeset viewer.