Changeset 2585 in MondoRescue


Ignore:
Timestamp:
Feb 15, 2010, 8:45:50 PM (14 years ago)
Author:
Bruno Cornec
Message:
  • Fix problems of wrongly detected Duplicate mountpoints in case of lvm
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2.9/mindi/mindi

    r2584 r2585  
    13421342    # Coherency verification
    13431343    ML01=`cat $file | wc -l`
    1344     ML02=`cat $file | grep -v ' lvm ' | wc -l`
     1344    ML02=`grep -v ' lvm ' $file | wc -l`
    13451345    ML1=`$AWK '{print $1}' $file | sort -u | wc -l`
    1346     ML2=`$AWK '{print $2}' $file | grep -v ' lvm ' | sort -u | wc -l`
     1346    ML2=`grep -v ' lvm ' $file | $AWK '{print $2}' | sort -u | wc -l`
    13471347    if [ "$ML01" -ne "$ML1" ]; then
    13481348        echo "--------------------------------------------" >> $LOGFILE
Note: See TracChangeset for help on using the changeset viewer.