- Timestamp:
- May 7, 2007, 11:29:19 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.2.4/mondo/src/common/libmondo-archive.c
r1317 r1402 1047 1047 if (!res) { 1048 1048 log_to_screen("Boot+data disks were created OK"); 1049 sprintf(command, "mkdir -p / root/images/mindi/");1049 sprintf(command, "mkdir -p /var/cache/mindi/"); 1050 1050 log_msg(2, command); 1051 1051 run_program_and_log_output(command, FALSE); 1052 1052 sprintf(command, 1053 "cp -f %s/images/mindi.iso / root/images/mindi/mondorescue.iso",1053 "cp -f %s/images/mindi.iso /var/cache/mindi/mondorescue.iso", 1054 1054 bkpinfo->scratchdir); 1055 1055 log_msg(2, command); … … 2779 2779 * @c backup_media_type field is used in this function. 2780 2780 * @param imagesdir The directory containing the floppy images (usually 2781 * / root/images/mindi).2781 * /var/cache/mindi). 2782 2782 * 2783 2783 * @return The number of errors encountered (0 for success) … … 2958 2958 if (!bkpinfo->nonbootable_backup) { 2959 2959 #ifdef __FreeBSD__ 2960 if (!does_file_exist("/ root/images/mindi/mindi-kern.1722.img"))2960 if (!does_file_exist("/var/cache/mindi/mindi-kern.1722.img")) 2961 2961 #else 2962 if (!does_file_exist("/ root/images/mindi/mindi-bootroot.1722.img")2963 && !does_file_exist("/ root/images/mindi/mindi-boot.1440.img"))2962 if (!does_file_exist("/var/cache/mindi/mindi-bootroot.1722.img") 2963 && !does_file_exist("/var/cache/mindi/mindi-boot.1440.img")) 2964 2964 #endif 2965 2965 { 2966 2966 mvaddstr_and_log_it(g_currentY++, 74, "No Imgs"); 2967 if (does_file_exist("/ root/images/mindi/mondorescue.iso")) {2967 if (does_file_exist("/var/cache/mindi/mondorescue.iso")) { 2968 2968 popup_and_OK 2969 ("Boot+data floppy creation failed. However, FYI, you may burn / root/images/mindi/mondorescue.iso to a CD and boot from that instead if you wish.");2969 ("Boot+data floppy creation failed. However, FYI, you may burn /var/cache/mindi/mondorescue.iso to a CD and boot from that instead if you wish."); 2970 2970 res++; 2971 2971 } 2972 2972 } else { 2973 offer_to_write_floppies(bkpinfo, "/ root/images/mindi");2973 offer_to_write_floppies(bkpinfo, "/var/cache/mindi"); 2974 2974 mvaddstr_and_log_it(g_currentY++, 74, "Done."); 2975 2975 }
Note:
See TracChangeset
for help on using the changeset viewer.