Changeset 2078 in MondoRescue


Ignore:
Timestamp:
Dec 12, 2008, 12:15:04 AM (15 years ago)
Author:
Bruno Cornec
Message:
  • Fix a bug when doing tape backup on ia64. The bot file was erased too early. (report of Grassi Giuseppe giuseppe.grassi2_at_italtel.it)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2.8/mindi/mindi

    r2073 r2078  
    28412841    LogIt "Finished."
    28422842elif [ "$TAPEDEV" ] ; then
    2843     rm -f $MINDI_CACHE/{*img,*iso}
     2843    if [ "$ARCH" != "ia64" ] ; then
     2844        # We need to keep the img file as boot file for ia64 platform
     2845        rm -f $MINDI_CACHE/{*img,*iso}
     2846    else
     2847        rm -f $MINDI_CACHE/*iso
     2848    fi
    28442849    if [ "$PROMPT_MAKE_USB_IMAGE" = "yes" ] && [ "$USBDEVICE" != "" ]; then
    28452850        OfferToMakeBootableUSB
Note: See TracChangeset for help on using the changeset viewer.