Changeset 2502 in MondoRescue for branches


Ignore:
Timestamp:
Dec 17, 2009, 1:02:47 AM (14 years ago)
Author:
Bruno Cornec
Message:
  • Fix an issue in the function listing kernel modules when not found
Location:
branches
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2.10/mindi/mindi

    r2495 r2502  
    752752        fi
    753753        LogFile "module $module --> $r"
    754         [ "$r" ] && echo "$r" >> $outfile
     754        [ -f "$r" ] && echo "$r" >> $outfile
    755755        [ -f "$oss" ] && find $oss | grep -F $module >> $outfile
    756756        progress=$(($progress+1))
  • branches/2.2.9/mindi/mindi

    r2495 r2502  
    805805        fi
    806806        echo "module $module --> $r" >> $LOGFILE
    807         [ "$r" ] && echo "$r"
     807        [ -f "$r" ] && echo "$r"
    808808        [ -f "$oss" ] && find $oss | grep -F $module
    809809    done
Note: See TracChangeset for help on using the changeset viewer.