Changeset 2854 in MondoRescue


Ignore:
Timestamp:
Jul 25, 2011, 1:48:48 PM (13 years ago)
Author:
Bruno Cornec
Message:
  • Fix a compatibility bug in mindi where exclude lists with '|' was incorrectly analyzed (' ' still expected)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2.9/mindi/mindi

    r2851 r2854  
    12281228            list_of_devices="`echo $l | sort -u`"
    12291229
    1230             for d in $MINDI_EXCLUDE_DEVS ; do
     1230            for d in `echo $MINDI_EXCLUDE_DEVS | sed 's/|/ /g'`; do
    12311231                if  [ "`echo " $list_of_devices " | grep " $d"`" != "" ]; then
    12321232                    echo "Excluding $current_partition from mountlist (due to excluded device $d)" >> $LOGFILE
Note: See TracChangeset for help on using the changeset viewer.