Changeset 1591 in MondoRescue
- Timestamp:
- Aug 2, 2007, 12:26:40 AM (18 years ago)
- Location:
- branches/stable
- Files:
-
- 1 deleted
- 9 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
branches/stable/mindi-busybox/distributions/gentoo/mindi-busybox.ebuild
r1529 r1591 10 10 LICENSE="GPL-2" 11 11 SLOT="0" 12 KEYWORDS=" x86 ia64 -*"12 KEYWORDS="~x86 ~ia64 ~amd64 -*" 13 13 DEPEND="virtual/libc" 14 14 RDEPEND=">=app-arch/bzip2-0.9 -
branches/stable/mindi/deplist.txt
r1570 r1591 14 14 #-------------------------------- ESSENTIAL ----------------------------------- 15 15 fstab raidtab modules.conf conf.modules mondorestore modules.conf.local 16 /etc/mdadm/mdadm.conf /etc/mdadm.conf 16 17 afio star ntfsclone parted ms-sys file getfattr setfattr getfacl setfacl 17 18 buffer -
branches/stable/mindi/distributions/gentoo/mindi.ebuild
r1529 r1591 11 11 LICENSE="GPL-2" 12 12 SLOT="0" 13 KEYWORDS=" x86 ia64 -*"13 KEYWORDS="~x86 ~ia64 ~amd64 -*" 14 14 IUSE="" 15 15 -
branches/stable/mindi/rootfs/etc/ld.so.conf
r1061 r1591 3 3 /usr/local/lib 4 4 /usr/X11R6/lib 5 /lib32 6 /usr/lib32 5 7 /lib64 6 8 /usr/lib64 -
branches/stable/mondo-doc/distributions/gentoo/mondo.ebuild
r761 r1591 13 13 LICENSE="GPL-2" 14 14 SLOT="0" 15 KEYWORDS=" -* ~x86"15 KEYWORDS="~x86 ~ia64 ~amd64 -*" 16 16 IUSE="" 17 17 -
branches/stable/mondo-doc/mondorescue-howto.sgml
r1590 r1591 612 612 your tape streamer with '-d <device>'. You don't usually need 613 613 to but it's good to be on the safe side. Some computers call your 614 tape streamer /dev/osst0, some call it /dev/ftape, ...</para> 614 tape streamer /dev/osst0, some call it /dev/ftape, ... 615 Also, depending on the tape streamer model, a tape should be inserted 616 in the tape drive before starting mondoarchive, otherwise it may not 617 recognize the drive.</para> 615 618 </listitem> 616 619 </itemizedlist> … … 728 731 fopen(), fread(), fwrite() and fclose() to interact with tape 729 732 drives. That works for most drives but some drives just don't like 730 that.</para> 733 that. 734 Also, depending on the tape streamer model, a tape should be inserted 735 in the tape drive before starting mondoarchive, otherwise it may not 736 recognize the drive.</para> 731 737 <para>Mondo Rescue has been tested thousands of times on various computers. 732 738 It has worked for them. … … 2901 2907 and defblksize using 'mt', or tweaking Mondo's block size by 2902 2908 recompiling it with make INTTAPE=4096 or INTTAPE=8192 or something. 2903 Other than that, you need a priest or a refund.</para> 2909 Other than that, you need a priest or a refund. 2910 Also, depending on the tape streamer model, a tape should be inserted 2911 in the tape drive before starting mondoarchive, otherwise it may not 2912 recognize the drive.</para> 2904 2913 </answer> 2905 2914 </qandaentry> -
branches/stable/mondo/src/common/libmondo-string.c
r1549 r1591 745 745 sev = 2; 746 746 mr_asprintf(&reason, 747 _("It's in your /home partiton. Therefore, it is important."));747 _("It's in your /home directory. Therefore, it is important.")); 748 748 } 749 749 if (!strncmp(filename, "/usr/", 5)) { -
branches/stable/mondo/src/mondorestore/mondo-rstr-compare.c
r1555 r1591 298 298 if (res) { 299 299 log_OS_error(command); 300 log_msg(2, tmp); 300 301 } 301 302 mr_free(command); … … 503 504 long q = 0L; 504 505 char *tmp = NULL; 506 char *new = NULL; 507 char *cwd = NULL; 508 509 malloc_string(new); 510 malloc_string(cwd); 505 511 506 512 /************************************************************************** … … 546 552 ("Warning - differences found during the compare phase")); 547 553 } 548 549 retval += unmount_all_devices(mountlist);550 554 551 555 if (count_lines_in_file("/tmp/changed.txt") > 0) { … … 575 579 576 580 mr_msg(2, "calling popup_changelist_from_file()"); 581 getcwd(cwd, MAX_STR_LEN - 1); 582 chdir(bkpinfo->restore_path); 583 getcwd(new, MAX_STR_LEN - 1); 577 584 popup_changelist_from_file("/tmp/changed.files"); 578 585 mr_msg(2, "Returning from popup_changelist_from_file()"); 586 chdir(cwd); 579 587 } 580 588 } else { … … 583 591 ("No significant differences were found. Your backup is perfect.")); 584 592 } 593 retval += unmount_all_devices(mountlist); 594 585 595 kill_petris(); 596 paranoid_free(new); 597 paranoid_free(cwd); 586 598 return (retval); 587 599 } -
branches/stable/tools/build2pkg
r1570 r1591 103 103 cd .. 104 104 elif [ _"$dtype" = _"ebuild" ]; then 105 tar xfz $src $p-${PVER}/distributions/${ddir}-$dver/$p-${PVER}.ebuild 105 if [ _"$p" = _"mondo" ]; then 106 eb="mondo-rescue" 107 else 108 eb=$p 109 fi 110 tar xfz $src $p-${PVER}/distributions/${ddir}-$dver/$eb-${PVER}.ebuild 106 111 if [ _"`grep $TOPBUILDDIR/portage /etc/make.conf`" = _"" ]; then 107 112 echo "Adding $TOPBUILDDIR/portage to /etc/make.conf" … … 109 114 fi 110 115 111 mkdir -p ${TOPBUILDDIR}/portage/sys-apps/$ p112 mv $p-${PVER}/distributions/${ddir}-$dver/$ p-${PVER}.ebuild ${TOPBUILDDIR}/portage/sys-apps/$p/$p-${PVER}.ebuild116 mkdir -p ${TOPBUILDDIR}/portage/sys-apps/$eb 117 mv $p-${PVER}/distributions/${ddir}-$dver/$eb-${PVER}.ebuild ${TOPBUILDDIR}/portage/sys-apps/$p/$eb-${PVER}.ebuild 113 118 rm -rf $p-${PVER} 114 119 115 cd ${TOPBUILDDIR}/portage/sys-apps/$ p116 ebuild $ p-${PVER}.ebuild digest120 cd ${TOPBUILDDIR}/portage/sys-apps/$eb 121 ebuild $eb-${PVER}.ebuild digest 117 122 if [ $? != 0 ]; then 118 123 status=-1 119 124 fi 120 ebuild $ p-${PVER}.ebuild package125 ebuild $eb-${PVER}.ebuild package 121 126 if [ $? != 0 ]; then 122 127 status=-1 123 128 fi 124 export pkg="$pkg $ p-${PVER}.ebuild"129 export pkg="$pkg $eb-${PVER}.ebuild" 125 130 elif [ _"$dtype" = _"deb" ]; then 126 131 cd $TOPBUILDDIR
Note:
See TracChangeset
for help on using the changeset viewer.