Ignore:
Timestamp:
Apr 16, 2007, 4:13:59 PM (17 years ago)
Author:
Bruno Cornec
Message:

Log files are now consistent: mondoarchive.log for mondoarchive (containing also mindi.log) and mondorestore.log for mondorestore (copied from /tmp (ram) to /var/log (disk) at the end of the restore)
One include has been created for each bianry containing only that declaration ofr the moment, but which will be extended to include all local definitions (ps_* e.g.)
Doc updated accordingly
LOGFILE in restore process is now passed in the environment and not duplicated anymore
LogIt is not redifined either
LOGFILE should be put in environment by mondoarchive for mindi's usage but that's a step left for later.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2.2/mondo/src/mondorestore/mondo-rstr-compare.c

    r1294 r1315  
    162162    } else {
    163163        sprintf(command_ptr,
    164                 "md5sum \"%s%s\" > /tmp/md5sum.txt 2> /tmp/errors.txt",
     164                "md5sum \"%s%s\" > /tmp/md5sum.txt 2> /tmp/errors",
    165165                MNT_RESTORING, bigfile_fname_ptr);
    166166    }
    167167    log_msg(2, command_ptr);
    168168    paranoid_system
    169         ("cat /tmp/errors >> /tmp/mondo-restore.log 2> /dev/null");
     169        ("cat /tmp/errors >> %s 2> /dev/null", MONDO_LOGFILE);
    170170    if (system(command_ptr)) {
    171171        log_OS_error("Warning - command failed");
Note: See TracChangeset for help on using the changeset viewer.