Changeset 1020 in MondoRescue


Ignore:
Timestamp:
Jan 2, 2007, 12:16:33 PM (17 years ago)
Author:
Bruno Cornec
Message:
  • Fix a bug in mindi where a readlink was done without -f option
  • mindi's log includes now result of df and lsmod
  • mondo needs mindi 1.2.1 at least
Location:
branches/stable
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/stable/mindi/mindi

    r1010 r1020  
    944944    fi
    945945
    946     link=`readlink $file`
     946    link=`readlink -f $file`
    947947    d=`dirname $file`
    948948    if [ ! -e "$link" -a ! -e "$d/$link" ]; then
     
    26552655
    26562656##############################################################################
    2657 #----------------------------------- main -----------------------------------#
     2657#----------------------------------- Main -----------------------------------#
    26582658##############################################################################
    26592659
     
    27602760    LVM="false"
    27612761fi
     2762echo "LVM set to $LVM" >> $LOGFILE
     2763echo "----------" >> $LOGFILE
     2764echo "df result:" >> $LOGFILE
     2765echo "----------" >> $LOGFILE
     2766df >> $LOGFILE
     2767echo "-------------" >> $LOGFILE
     2768echo "lsmod result:" >> $LOGFILE
     2769echo "-------------" >> $LOGFILE
     2770lsmod >> $LOGFILE
     2771echo "-------------" >> $LOGFILE
    27622772
    27632773if [ "$#" -ge "2" ] ; then
  • branches/stable/mondo/distributions/rpm/mondo.spec

    r893 r1020  
    1919ExcludeArch:    ppc
    2020OBS
    21 Requires:   mindi >= 1.2.0, bzip2 >= 0.9, afio, mkisofs, binutils, newt >= 0.50, DDD
     21Requires:   mindi >= 1.2.1, bzip2 >= 0.9, afio, mkisofs, binutils, newt >= 0.50, DDD
    2222%ifarch ia64
    2323Requires:   elilo, parted
  • branches/stable/tools/mknewversion

    r924 r1020  
    3737fi
    3838
    39 svn copy $SVN_M/branches/stable $SVN_M/branches/${VER}
     39echo "Copying the stable version to ${VER}"
     40svn copy $SVN_M/branches/stable $SVN_M/branches/${VER} -m "Creation of mondo ${VER} from stable"
    4041cd $TOOLHOME/../..
    4142svn co $SVN_M/branches/${VER} ${VER}
     
    5354    echo "$v" > $p/VERSION
    5455done
    55 svn ci -m "Creation of mondo ${VER}-$TAG"
     56svn ci -m "VERSION and TAG update"
    5657svn up
Note: See TracChangeset for help on using the changeset viewer.