Changeset 3023 in MondoRescue for branches/3.0/mindi/mindi


Ignore:
Timestamp:
Jun 12, 2012, 1:14:50 PM (12 years ago)
Author:
Bruno Cornec
Message:
  • Fix #614 SLES kbd issue (removing double quotes was not done for all of them) (Victor Gattegno victor.gattegno_at_hp.com)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3.0/mindi/mindi

    r3022 r3023  
    254254    tar cf - -C / $mappath 2>> $MINDI_TMP/$$.log | (cd "$bigdir" ; tar xf -) || LogIt "WARNING: AKMF -- Could not copy $mappath to $bigdir" $MINDI_TMP/$$.log
    255255    if [ "`echo $mappath | grep -F ".gz"`" ] ; then
    256         included_list=`gzip -dc $mappath | grep -Fi include | sed s/'"'// | cut -d' ' -f2`
    257     else
    258         included_list=`grep -Fi include $mappath | sed s/'"'// | cut -d' ' -f2`
     256        included_list=`gzip -dc $mappath | grep -Fi include | sed s/'"'//g | cut -d' ' -f2`
     257    else
     258        included_list=`grep -Fi include $mappath | sed s/'"'//g | cut -d' ' -f2`
    259259    fi
    260260    for included_item in $included_list ; do
Note: See TracChangeset for help on using the changeset viewer.