- Timestamp:
- Nov 18, 2006, 1:12:12 AM (19 years ago)
- Location:
- branches/stable
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/stable/mindi/mindi
r940 r941 102 102 103 103 FDISKLOG=$MINDI_TMP/parted2fdisk.log 104 touch $FDISKLOG105 104 106 105 # Purge from potential old run … … 479 478 480 479 # Creates a tar file containing all required files 481 for i in /etc/fstab /etc/lilo.conf /etc/raidtab $LOGFILE /var/log/mondo-archive.log $FDISKLOG; do480 for i in /etc/fstab /etc/lilo.conf /etc/raidtab $LOGFILE /var/log/mondo-archive.log ; do 482 481 [ -e "$i" ] && cp -f $i $MINDI_TMP 483 482 done … … 2773 2772 rm -rf $MINDI_TMP 2774 2773 MINDI_TMP=$MONDO_TMP 2774 FDISKLOG=$MINDI_TMP/parted2fdisk.log 2775 2775 CACHE_LOC=$3 2776 2776 if [ _"$CACHE_LOC" != _"" ]; then -
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.