Changeset 143 in MondoRescue
- Timestamp:
- Nov 29, 2005, 1:50:25 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.05/mondo/mondo/common/libmondo-archive.c
r128 r143 1044 1044 } else { 1045 1045 log_to_screen("Mindi failed to create your boot+data disks."); 1046 s printf(command, "grep 'Fatal error' %s", "/var/log/mindi.log");1046 strcpy(command, "grep 'Fatal error' /var/log/mindi.log"); 1047 1047 strcpy(tmp, call_program_and_get_last_line_of_output(command)); 1048 1048 if (strlen(tmp) > 1) { … … 3871 3871 */ 3872 3872 sprintf(tmp, 3873 " sed -n -e 's/afio: //p' %s| grep -vx '/dev/.*' >> /tmp/changed.files",3873 "grep 'afio: ' %s | sed 's/afio: //' | grep -vx '/dev/.*' >> /tmp/changed.files", 3874 3874 MONDO_LOGFILE); 3875 3875 system(tmp); 3876 3876 3877 3877 sprintf(tmp, 3878 " sed -n -e 's/star: //p' %s| grep -vx '/dev/.*' >> /tmp/changed.files",3878 "grep 'star: ' %s | sed 's/star: //' | grep -vx '/dev/.*' >> /tmp/changed.files", 3879 3879 MONDO_LOGFILE); 3880 3880 system(tmp);
Note:
See TracChangeset
for help on using the changeset viewer.