source: MondoRescue/branches/stable/mondo/src/common/libmondo-archive.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.3 KB
RevLine 
[1]1/* libmondo-archive.h
[128]2 * $Id: libmondo-archive.h 1663 2007-09-27 10:21:18Z bruno $
[1]3 */
4
[1663]5int archive_this_fileset(char *filelist,
[128]6 char *fname, int setno);
[1663]7int backup_data();
8int call_mindi_to_supply_boot_disks();
9bool can_we_fit_these_files_on_media(
[128]10 char *files_to_add, ...);
[1663]11int do_that_initial_phase();
12int do_that_final_phase();
[128]13int figure_out_kernel_path_interactively_if_necessary(char *kernel);
14bool get_bit_N_of_array(char *array, int N);
[1663]15int make_those_slices_phase();
16int make_those_afios_phase();
17int make_slices_and_images(
[128]18 char *biggielist_fname);
[1663]19int make_iso_fs(char *destfile);
20int make_afioballs_and_images();
21extern int (*move_files_to_cd) (char *, ...);
22int _move_files_to_cd(char *files_to_add, ...);
23extern int (*move_files_to_stream) (char *, ...);
24int _move_files_to_stream(char *files_to_add,
[128]25 ...);
[1594]26void pause_and_ask_for_cdr(int);
[128]27void set_bit_N_of_array(char *array, int N, bool true_or_false);
[1663]28int slice_up_file_etc(char *biggie_filename,
[296]29 char *ntfsprog_fifo,
[128]30 long biggie_file_number, long noof_biggie_files,
[296]31 bool use_ntfsprog);
[1663]32int verify_data();
[128]33void wipe_archives(char *d);
[1663]34int write_iso_and_go_on(bool last_cd);
35int write_final_iso_if_necessary();
36int call_growisofs(char *destfile);
37int make_afioballs_and_images_SINGLETHREAD();
38int archive_this_fileset_with_star(
[128]39 char *filelist, char *fname, int setno);
[543]40void setenv_mondo_share(void);
Note: See TracBrowser for help on using the repository browser.