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

Last change on this file since 1903 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
Line 
1/* libmondo-archive.h
2 * $Id: libmondo-archive.h 1663 2007-09-27 10:21:18Z bruno $
3 */
4
5int archive_this_fileset(char *filelist,
6 char *fname, int setno);
7int backup_data();
8int call_mindi_to_supply_boot_disks();
9bool can_we_fit_these_files_on_media(
10 char *files_to_add, ...);
11int do_that_initial_phase();
12int do_that_final_phase();
13int figure_out_kernel_path_interactively_if_necessary(char *kernel);
14bool get_bit_N_of_array(char *array, int N);
15int make_those_slices_phase();
16int make_those_afios_phase();
17int make_slices_and_images(
18 char *biggielist_fname);
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,
25 ...);
26void pause_and_ask_for_cdr(int);
27void set_bit_N_of_array(char *array, int N, bool true_or_false);
28int slice_up_file_etc(char *biggie_filename,
29 char *ntfsprog_fifo,
30 long biggie_file_number, long noof_biggie_files,
31 bool use_ntfsprog);
32int verify_data();
33void wipe_archives(char *d);
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(
39 char *filelist, char *fname, int setno);
40void setenv_mondo_share(void);
Note: See TracBrowser for help on using the repository browser.