Changeset 542 in MondoRescue for branches/stable/mindi


Ignore:
Timestamp:
May 13, 2006, 8:48:41 PM (18 years ago)
Author:
bcornec
Message:

merge -r436:517 $SVN_M/branches/2.0.7
stable is now again at 2.0.8 initial

Location:
branches/stable/mindi
Files:
6 edited
2 copied

Legend:

Unmodified
Added
Removed
  • branches/stable/mindi/ChangeLog

    r427 r542  
    33MINDI CHANGES
    44
    5 1.07 (2006-02-23)
     51.0.7 (2006-03-10)
     6- Fix issue for 2.6 kernels with VIA chipsets (Andree Leidenfrost)
    67- stop creating further size of floppy disks if the smaller one succeeds
    78  (Bruno Cornec)
  • branches/stable/mindi/VERSION

    r339 r542  
    1 stable
     11.0.7
  • branches/stable/mindi/distributions/redhat/spec.m4

    r541 r542  
    22dnl
    33dnl SSS is replaced by the source package format
    4 define(`SSS', %{name}-%{version}.tgz)dnl
     4define(`SSS', ftp://ftp.mondorescue.org/src/%{name}-%{version}.tgz)dnl
    55dnl DDD is replaced by the list of dependencies specific to that distro
    66define(`DDD', %{addreqb}, which, grep >= 2.5)dnl
    77dnl GRP is replaced by the RPM group of apps
    8 define(`GRP', Archiving/Archiving)dnl
     8define(`GRP', Applications/Archiving)dnl
  • branches/stable/mindi/distributions/rpm/mindi.spec

    r541 r542  
    1717License:    GPL
    1818Group:      %{grp}
    19 Url:        http://mondorescue.berlios.de
     19Url:        http://www.mondorescue.org
    2020Source:     %{src}
    21 BuildRoot:  %{_tmppath}/%{name}-%{version}
     21BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(id -u -n)
    2222Requires:   %{addreq}
     23Epoch:      %(echo EEE | cut -d- -f1 | sed "s~M~~")
    2324# Not on all systems
    2425#Conflicts: bonnie++
     
    3132
    3233%prep
    33 %{__rm}  -rf $RPM_BUILD_ROOT
    3434%setup -n %name-%{version}
    3535
     
    4141
    4242%install
     43%{__rm}  -rf $RPM_BUILD_ROOT
    4344export DONT_RELINK=1
    4445
    45 %{__rm} -rf $RPM_BUILD_ROOT
    4646export PREFIX=${RPM_BUILD_ROOT}%{_exec_prefix}
    4747export CONFDIR=${RPM_BUILD_ROOT}%{_sysconfdir}
     
    6060%files
    6161%defattr(644,root,root,755)
    62 %config(noreplace) %{_sysconfdir}/mindi/deplist.txt
     62%config(noreplace) %{_sysconfdir}/mindi
     63%config(noreplace) %{_sysconfdir}/mindi/deplist.txt
    6364%doc ChangeLog INSTALL COPYING README TODO README.ia64 README.pxe README.busybox svn.log
    6465%{_mandir}/man8/*
  • branches/stable/mindi/install.sh

    r541 r542  
    109109fi
    110110
     111# Special case for SuSE family where doc is put elsewhere in the RPM
     112if [ _"$dfam" = _"suse" ]; then
     113    rm -rf $DOCDIR
     114fi
     115
    111116exit 0
  • branches/stable/mindi/mindi

    r541 r542  
    12541254    if [ $tmpmodprobe_flag == "Y" ] ; then
    12551255        infile="/tmp/modprobe.conf.mindi.$$"
    1256         find /etc/modprobe.d -maxdepth 1 -name "*" -xtype f > $infile
     1256        find /etc/modprobe.d -maxdepth 1 -name "*" -xtype f -print0 | xargs -0 cat > $infile
    12571257    else
    12581258        infile="/etc/modules.conf"
     
    13151315    if [ -d "/proc/lvm" ] || [ -d "/dev/mapper" ]; then
    13161316    echo -en "\rAnalyzing LVM...\r"
    1317     all_partitions=`$MINDI_LIB/analyze-my-lvm | fgrep ">>>" | cut -d' ' -f2-32`
     1317    all_partitions=`$MINDI_SBIN/analyze-my-lvm | fgrep ">>>" | cut -d' ' -f2-32`
    13181318    fi
    13191319    all_partitions="$all_partitions `ListAllPartitions 2> /dev/null`"
     
    22172217    cp -f $TMP_ROOT/mountlist.txt $CACHE_LOC
    22182218    [ "`DidMondoCallMe`" ] && cp -f $minidir_root/$noof_disks/tmp/mountlist.txt $MONDO_TMP/.
    2219     [ -d "/proc/lvm" ] && $MINDI_LIB/analyze-my-lvm > $minidir_root/$noof_disks/tmp/i-want-my-lvm
    2220     [ -d "/dev/mapper" ] && $MINDI_LIB/analyze-my-lvm > $minidir_root/$noof_disks/tmp/i-want-my-lvm
     2219    [ -d "/proc/lvm" ] && $MINDI_SBIN/analyze-my-lvm > $minidir_root/$noof_disks/tmp/i-want-my-lvm
     2220    [ -d "/dev/mapper" ] && $MINDI_SBIN/analyze-my-lvm > $minidir_root/$noof_disks/tmp/i-want-my-lvm
    22212221    cat $minidir_root/$noof_disks/tmp/mountlist.txt >> $LOGFILE
    22222222    ZipMinidirsIntoTarballs $minidir_root $tardir $noof_disks
Note: See TracChangeset for help on using the changeset viewer.