Ignore:
Timestamp:
Sep 27, 2007, 12:21:18 PM (17 years ago)
Author:
Bruno Cornec
Message:
  • Fix bug #197 (based on an initial patch of Scott Cummings)
  • Fix a bug where df was using locale to print messages and wasn't filtered correctly
  • mkdtemp checked in configure
  • reset_bkpinfo called as early as possible by both main program.
  • It creates a tmpdir cleanly with mkdtemp in setup_tmpdir subfunction, which takes in account TMPIR and TMP env var. Remains to see what tmpfs does and tests
  • configure.in should also be filtered.
  • Remove g_bkpinfo_DONTUSETHIS
  • remove bkpinfo also from header files
  • Render bkpinfo global (potential issue on thread, but should not be a problem as that structure is indeed static during archive)
  • Apply patch from Andree Leidenfrost, modified a bit to use bkpinfo->tmpdir instead of /tmp or MINDI_CACHE when appropriate. Fix security issues in mondo. Thanks al ot Andree for catching all those issues.
  • /tmp => /var/log for mondorestore.log in mindi
  • Update linux terminfo to fix a color issue (Andree Leidenfrost)
  • Removes useless log file (Andree Leidenfrost)
  • replace vi with find_my_editor during restore (Andree Leidenfrost)
  • sync in bg in mindi (VMWare issue to look at)
  • mindi/mindi-busybox have a different version than mondo for pb
  • PB-SUF also added to spec file
  • Fix a bug for pb build (omission of PB-SUF declaration)

(merge -r1631:1662 $SVN_M/branches/2.2.5)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/stable/mondo/src/mondorestore/mondo-restore.h

    r1200 r1663  
    88
    99void ask_about_these_imagedevs(char *, char *);
    10 int catchall_mode(struct s_bkpinfo *, struct mountlist_itself *,
     10int catchall_mode(struct mountlist_itself *,
    1111                  struct raidlist_itself *);
    12 int interactive_mode(struct s_bkpinfo *, struct mountlist_itself *,
     12int interactive_mode(struct mountlist_itself *,
    1313                     struct raidlist_itself *);
    14 int nuke_mode(struct s_bkpinfo *, struct mountlist_itself *,
     14int nuke_mode(struct mountlist_itself *,
    1515              struct raidlist_itself *);
    16 int compare_mode(struct s_bkpinfo *, struct mountlist_itself *,
     16int compare_mode(struct mountlist_itself *,
    1717                 struct raidlist_itself *);
    18 int iso_mode(struct s_bkpinfo *bkpinfo, struct mountlist_itself *mountlist,
     18int iso_mode(struct mountlist_itself *mountlist,
    1919             struct raidlist_itself *raidlist, bool nuke_me_please);
    20 int restore_mode(struct s_bkpinfo *, struct mountlist_itself *,
     20int restore_mode(struct mountlist_itself *,
    2121                 struct raidlist_itself *);
    22 int restore_a_biggiefile_from_CD(struct s_bkpinfo *, long, struct s_node *,
     22int restore_a_biggiefile_from_CD(long, struct s_node *,
    2323                                 char *);
    24 int restore_a_biggiefile_from_stream(struct s_bkpinfo *, char *, long,
     24int restore_a_biggiefile_from_stream(char *, long,
    2525                                     char *, long long, struct s_node *,
    2626                                     int, char *);
    2727int restore_a_tarball_from_CD(char *, long, struct s_node *, struct s_bkpinfo *);
    28 int restore_a_tarball_from_stream(struct s_bkpinfo *, char *, long,
     28int restore_a_tarball_from_stream(char *, long,
    2929                                  struct s_node *, long long, char *,
    3030                                  char *);
    31 int restore_all_biggiefiles_from_CD(struct s_bkpinfo *, struct s_node *);
    32 int restore_all_biggiefiles_from_stream(struct s_bkpinfo *,
     31int restore_all_biggiefiles_from_CD(struct s_node *);
     32int restore_all_biggiefiles_from_stream(
    3333                                        struct s_node *);
    34 int restore_all_tarballs_from_CD(struct s_bkpinfo *, struct s_node *);
    35 int restore_all_tarballs_from_stream(struct s_bkpinfo *, struct s_node *);
    36 int restore_everything(struct s_bkpinfo *, struct s_node *);
    37 int restore_live_from_monitas_server(struct s_bkpinfo *, char *, char *,
     34int restore_all_tarballs_from_CD(struct s_node *);
     35int restore_all_tarballs_from_stream(struct s_node *);
     36int restore_everything(struct s_node *);
     37int restore_live_from_monitas_server(char *, char *,
    3838                                     char *);
    39 int restore_to_live_filesystem(struct s_bkpinfo *);
     39int restore_to_live_filesystem();
    4040void swap_mountlist_entries(struct mountlist_itself *, int, int);
    4141void sort_mountlist_by_mountpoint(struct mountlist_itself *, bool);
    4242void sort_mountlist_by_device(struct mountlist_itself *);
    43 int what_number_cd_is_this(struct s_bkpinfo *);
     43int what_number_cd_is_this();
Note: See TracChangeset for help on using the changeset viewer.