Changeset 132 in MondoRescue for branches/2.05


Ignore:
Timestamp:
Nov 22, 2005, 7:04:09 PM (18 years ago)
Author:
bcornec
Message:

Fix bugs for cifs support

Location:
branches/2.05/mondo
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/2.05/mondo/ChangeLog

    r102 r132  
    55- ia64 is now working for rhel3
    66- delivery process to BerliOS improved
     7- now handles cifs correctly
    78
    89v2.04_berlios (Bruno Cornec <bcornec@users.berlios.de)
  • branches/2.05/mondo/mondo/common/libmondo-devices.c

    r128 r132  
    24082408    strcpy(exclude_these_directories,
    24092409           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;}'"));
    24112411    strcpy(exclude_these_devices,
    24122412           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;}'"));
    24142414    sprintf(result_sz, "%s %s", exclude_these_directories,
    24152415            exclude_these_devices);
     
    24382438    strcpy(exclude_these_directories,
    24392439           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;}'"));
    24412441    strcpy(exclude_these_devices,
    24422442           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;}'"));
    24442444    sprintf(result_sz, "%s", exclude_these_directories);
    24452445    paranoid_free(exclude_these_devices);
Note: See TracChangeset for help on using the changeset viewer.