Changeset 542 in MondoRescue for branches/stable/mindi
- Timestamp:
- May 13, 2006, 8:48:41 PM (19 years ago)
- Location:
- branches/stable/mindi
- Files:
-
- 6 edited
- 2 copied
Legend:
- Unmodified
- Added
- Removed
-
branches/stable/mindi/ChangeLog
r427 r542 3 3 MINDI CHANGES 4 4 5 1.07 (2006-02-23) 5 1.0.7 (2006-03-10) 6 - Fix issue for 2.6 kernels with VIA chipsets (Andree Leidenfrost) 6 7 - stop creating further size of floppy disks if the smaller one succeeds 7 8 (Bruno Cornec) -
branches/stable/mindi/VERSION
r339 r542 1 stable 1 1.0.7 -
branches/stable/mindi/distributions/redhat/spec.m4
r541 r542 2 2 dnl 3 3 dnl SSS is replaced by the source package format 4 define(`SSS', %{name}-%{version}.tgz)dnl4 define(`SSS', ftp://ftp.mondorescue.org/src/%{name}-%{version}.tgz)dnl 5 5 dnl DDD is replaced by the list of dependencies specific to that distro 6 6 define(`DDD', %{addreqb}, which, grep >= 2.5)dnl 7 7 dnl GRP is replaced by the RPM group of apps 8 define(`GRP', A rchiving/Archiving)dnl8 define(`GRP', Applications/Archiving)dnl -
branches/stable/mindi/distributions/rpm/mindi.spec
r541 r542 17 17 License: GPL 18 18 Group: %{grp} 19 Url: http:// mondorescue.berlios.de19 Url: http://www.mondorescue.org 20 20 Source: %{src} 21 BuildRoot: %{_tmppath}/%{name}-%{version} 21 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(id -u -n) 22 22 Requires: %{addreq} 23 Epoch: %(echo EEE | cut -d- -f1 | sed "s~M~~") 23 24 # Not on all systems 24 25 #Conflicts: bonnie++ … … 31 32 32 33 %prep 33 %{__rm} -rf $RPM_BUILD_ROOT34 34 %setup -n %name-%{version} 35 35 … … 41 41 42 42 %install 43 %{__rm} -rf $RPM_BUILD_ROOT 43 44 export DONT_RELINK=1 44 45 45 %{__rm} -rf $RPM_BUILD_ROOT46 46 export PREFIX=${RPM_BUILD_ROOT}%{_exec_prefix} 47 47 export CONFDIR=${RPM_BUILD_ROOT}%{_sysconfdir} … … 60 60 %files 61 61 %defattr(644,root,root,755) 62 %config(noreplace) %{_sysconfdir}/mindi/deplist.txt 62 %config(noreplace) %{_sysconfdir}/mindi 63 %config(noreplace) %{_sysconfdir}/mindi/deplist.txt 63 64 %doc ChangeLog INSTALL COPYING README TODO README.ia64 README.pxe README.busybox svn.log 64 65 %{_mandir}/man8/* -
branches/stable/mindi/install.sh
r541 r542 109 109 fi 110 110 111 # Special case for SuSE family where doc is put elsewhere in the RPM 112 if [ _"$dfam" = _"suse" ]; then 113 rm -rf $DOCDIR 114 fi 115 111 116 exit 0 -
branches/stable/mindi/mindi
r541 r542 1254 1254 if [ $tmpmodprobe_flag == "Y" ] ; then 1255 1255 infile="/tmp/modprobe.conf.mindi.$$" 1256 find /etc/modprobe.d -maxdepth 1 -name "*" -xtype f > $infile1256 find /etc/modprobe.d -maxdepth 1 -name "*" -xtype f -print0 | xargs -0 cat > $infile 1257 1257 else 1258 1258 infile="/etc/modules.conf" … … 1315 1315 if [ -d "/proc/lvm" ] || [ -d "/dev/mapper" ]; then 1316 1316 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` 1318 1318 fi 1319 1319 all_partitions="$all_partitions `ListAllPartitions 2> /dev/null`" … … 2217 2217 cp -f $TMP_ROOT/mountlist.txt $CACHE_LOC 2218 2218 [ "`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-lvm2220 [ -d "/dev/mapper" ] && $MINDI_ LIB/analyze-my-lvm > $minidir_root/$noof_disks/tmp/i-want-my-lvm2219 [ -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 2221 2221 cat $minidir_root/$noof_disks/tmp/mountlist.txt >> $LOGFILE 2222 2222 ZipMinidirsIntoTarballs $minidir_root $tardir $noof_disks
Note:
See TracChangeset
for help on using the changeset viewer.