source: MondoRescue/branches/stable/mondo/src/common/libmondo-archive-EXT.h@ 1663

Last change on this file since 1663 was 1663, checked in by Bruno Cornec, 17 years ago
  • 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)

  • Property svn:keywords set to Id
File size: 1.4 KB
RevLine 
[1]1/* libmondo-archive-EXT.h */
2
3
[1663]4extern int archive_this_fileset(char *filelist,
[128]5 char *fname, int setno);
[1663]6extern int backup_data();
7extern int call_mindi_to_supply_boot_disks();
8extern bool can_we_fit_these_files_on_media(
[128]9 char *files_to_add, ...);
[1663]10extern int do_that_initial_phase();
11extern int do_that_final_phase();
[128]12extern int figure_out_kernel_path_interactively_if_necessary(char *kernel);
[1663]13extern int make_those_slices_phase();
14extern int make_those_afios_phase();
15extern int make_slices_and_images(
[128]16 char *biggielist_fname);
[1663]17extern int make_iso_fs(char *destfile);
18extern int make_afioballs_and_images();
19extern int (*move_files_to_cd) (char *, ...);
20extern int _move_files_to_cd(char *, ...);
21extern int (*move_files_to_stream) (char *, ...);
22extern int _move_files_to_stream(
[128]23 char *files_to_add, ...);
[1594]24extern void pause_and_ask_for_cdr(int);
[1663]25extern int slice_up_file_etc(
[128]26 char *biggie_filename,
[296]27 char *ntfsprog_fifo,
[128]28 long biggie_file_number,
29 long noof_biggie_files,
[296]30 bool use_ntfsprog);
[1663]31extern int verify_data();
[128]32extern void wipe_archives(char *d);
[1663]33extern int write_iso_and_go_on(bool last_cd);
34extern int write_final_iso_if_necessary();
35extern int call_growisofs(char *destfile);
36extern int make_afioballs_and_images_SINGLETHREAD();
37extern int archive_this_fileset_with_star(
[128]38 char *filelist, char *fname,
39 int setno);
[1152]40extern void setenv_mondo_var(void);
Note: See TracBrowser for help on using the repository browser.