Changeset 2651 in MondoRescue for branches/2.2.10/mindi


Ignore:
Timestamp:
Jun 13, 2010, 12:50:02 PM (14 years ago)
Author:
Bruno Cornec
Message:

svn merge -r 2634:2650 svn+ssh://bruno@svn.mondorescue.org/mondo/svn/mondorescue/branches/2.2.9

  • Update Lab logos
  • update mondo lab + pres
  • Fix #425: Do not blindly umount partitions at end of mindi
  • Attempt to fix problem of slowdown in filelist creation by re-introducing a limit to the find command
  • Remove warning if libata not found
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2.10/mindi/mindi

    r2644 r2651  
    240240# Parameter is exit code value
    241241MindiExit() {
    242     local my_partitions
    243 
    244242    LogFile "Mindi $MINDI_VERSION is exiting"
    245243    LogFile "End date : `date`"
     
    253251    sync&
    254252
    255     # Unmount what could remain mounted
    256     my_partitions=`mount | grep -F $MINDI_TMP | cut -f1 -d' '`
    257     [ "$my_partitions" != "" ] && umount $my_partitions
    258253    # Clean temporary files only when standalone mindi
    259254    if [ _"$MINDI_TMP" != _"$MONDO_TMP" ]; then
     
    25742569
    25752570# Compute libata version
    2576 laver=`modinfo libata | grep -Ei '^Version:' | cut -d: -f2 | cut -d. -f1 | sed 's/  *//g' 2> /dev/null`
     2571laver=`modinfo libata 2> /dev/null | grep -Ei '^Version:' | cut -d: -f2 | cut -d. -f1 | sed 's/  *//g' 2> /dev/null`
    25772572# If libata v2 is used then remove ide-generic as it will perturbate boot
    25782573if [ "`echo $MODULES | grep libata`" ]; then
Note: See TracChangeset for help on using the changeset viewer.