Changeset 941 in MondoRescue for branches/stable/mondo/src/common
- Timestamp:
- Nov 18, 2006, 1:12:12 AM (18 years ago)
- Location:
- branches/stable/mondo/src/common
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/stable/mondo/src/common/libmondo-fifo.c
r928 r941 241 241 char *command; 242 242 243 if (g_sz_call_to_buffer == NULL) { 244 return; 245 } 246 if (strcmp(g_sz_call_to_buffer,"") == 0) { 247 return; 248 } 243 249 malloc_string(tmp); 244 250 malloc_string(command); 245 251 paranoid_system("sync"); 246 252 sprintf(command, 247 "ps %s | grep -F \"%s\" | grep -Fv grep | awk '{print $2;}' | grep -v PID | head -1", ps_options, 248 g_sz_call_to_buffer); 253 "ps %s | grep -F \"%s\" | grep -Fv grep | awk '{print $2;}' | grep -v PID | head -1", ps_options, g_sz_call_to_buffer); 249 254 log_msg(2, "kill_buffer() --- command = %s", command); 250 255 strcpy(tmp, call_program_and_get_last_line_of_output(command)); -
branches/stable/mondo/src/common/libmondo-filelist.c
r912 r941 207 207 log_to_screen("Dividing filelist into sets. Please wait."); 208 208 i = 0; 209 /*210 if (find_home_of_exe("getfattr"))211 { i++; log_to_screen ("NEW! Recording extended attributes."); }212 if (find_home_of_exe("getfacl"))213 { i++; log_to_screen ("NEW! Recording ACL information."); }214 if (i)215 { i=0; log_to_screen ("This will take more time. Please be patient."); }216 */217 209 sprintf(filelist, "%s/archives/filelist.full", bkpinfo->scratchdir); 218 210 sprintf(cksumlist, "%s/cklist.full", bkpinfo->tmpdir);
Note:
See TracChangeset
for help on using the changeset viewer.