Ignore:
Timestamp:
Jul 22, 2006, 1:59:51 AM (18 years ago)
Author:
bcornec
Message:
  • Exclude mvfs type of filesystem (ClearCase) from mondo backup completely.
  • RMLL announce
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/stable/mondo/mondo/common/libmondo-filelist.c

    r681 r702  
    15251525        // 2.6 has /sys as a proc-type thing -- must be excluded
    15261526        sprintf(tmp,
    1527                 "find %s -maxdepth %d -path /proc -prune -o -path /sys -prune -o -path /dev/shm -prune -o -path /media/floppy -prune -o -type d -a -print > %s 2> /dev/null",
     1527                "find %s -maxdepth %d -fstype mvfs -prune -o -path /proc -prune -o -path /sys -prune -o -path /dev/shm -prune -o -path /media/floppy -prune -o -type d -a -print > %s 2> /dev/null",
    15281528                dir, MAX_SKEL_DEPTH, g_skeleton_filelist);
    15291529#else
    15301530        // On BSD, for example, /sys is the kernel sources -- don't exclude
    15311531        sprintf(tmp,
    1532                 "find %s -maxdepth %d -path /proc -prune -o -type d -a -print > %s 2> /dev/null",
     1532                "find %s -maxdepth %d -fstype mvfs -prune -o -path /proc -prune -o -type d -a -print > %s 2> /dev/null",
    15331533                dir, MAX_SKEL_DEPTH, g_skeleton_filelist);
    15341534#endif
Note: See TracChangeset for help on using the changeset viewer.