Changeset 132 in MondoRescue
- Timestamp:
- Nov 22, 2005, 7:04:09 PM (19 years ago)
- Location:
- branches/2.05/mondo
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.05/mondo/ChangeLog
r102 r132 5 5 - ia64 is now working for rhel3 6 6 - delivery process to BerliOS improved 7 - now handles cifs correctly 7 8 8 9 v2.04_berlios (Bruno Cornec <bcornec@users.berlios.de) -
branches/2.05/mondo/mondo/common/libmondo-devices.c
r128 r132 2408 2408 strcpy(exclude_these_directories, 2409 2409 call_program_and_get_last_line_of_output 2410 ("mount -t coda,ncpfs,nfs,smbfs | tr -s '\t' ' ' | cut -d' ' -f3 | tr -s '\n' ' ' | awk '{print $0;}'"));2410 ("mount -t coda,ncpfs,nfs,smbfs,cifs | tr -s '\t' ' ' | cut -d' ' -f3 | tr -s '\n' ' ' | awk '{print $0;}'")); 2411 2411 strcpy(exclude_these_devices, 2412 2412 call_program_and_get_last_line_of_output 2413 ("cat /etc/fstab | tr -s '\t' ' ' | grep -E '( (coda|ncpfs|nfs|smbfs ) )' | cut -d' ' -f1 | tr -s '\n' ' ' | awk '{print $0;}'"));2413 ("cat /etc/fstab | tr -s '\t' ' ' | grep -E '( (coda|ncpfs|nfs|smbfs|cifs) )' | cut -d' ' -f1 | tr -s '\n' ' ' | awk '{print $0;}'")); 2414 2414 sprintf(result_sz, "%s %s", exclude_these_directories, 2415 2415 exclude_these_devices); … … 2438 2438 strcpy(exclude_these_directories, 2439 2439 call_program_and_get_last_line_of_output 2440 ("mount -t coda,ncpfs,nfs,smbfs | tr -s '\t' ' ' | cut -d' ' -f3 | tr -s '\n' ' ' | awk '{print $0;}'"));2440 ("mount -t coda,ncpfs,nfs,smbfs,cifs | tr -s '\t' ' ' | cut -d' ' -f3 | tr -s '\n' ' ' | awk '{print $0;}'")); 2441 2441 strcpy(exclude_these_devices, 2442 2442 call_program_and_get_last_line_of_output 2443 ("cat /etc/fstab | tr -s '\t' ' ' | grep -E '( (coda|ncpfs|nfs|smbfs ) )' | cut -d' ' -f1 | tr -s '\n' ' ' | awk '{print $0;}'"));2443 ("cat /etc/fstab | tr -s '\t' ' ' | grep -E '( (coda|ncpfs|nfs|smbfs|cifs) )' | cut -d' ' -f1 | tr -s '\n' ' ' | awk '{print $0;}'")); 2444 2444 sprintf(result_sz, "%s", exclude_these_directories); 2445 2445 paranoid_free(exclude_these_devices);
Note:
See TracChangeset
for help on using the changeset viewer.