Changeset 3506 in MondoRescue


Ignore:
Timestamp:
Feb 13, 2016, 2:53:01 AM (8 years ago)
Author:
Bruno Cornec
Message:
  • wipe_archives now also removes star temporary files and not only afio ones.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3.2/mondo/src/common/libmondo-archive.c

    r3505 r3506  
    29552955
    29562956    mr_asprintf(dir, "%s/archives", d);
    2957     mr_asprintf(tmp, "find %s -name '*.afio*' -exec rm -f '{}' \\;", dir);
     2957    mr_asprintf(tmp, "find %s -name '*.afio*' -o -name '*.star.' -exec rm -f '{}' \\;", dir);
    29582958    run_program_and_log_output(tmp, FALSE);
    29592959    mr_free(tmp);
Note: See TracChangeset for help on using the changeset viewer.