source: MondoRescue/branches/stable/mondo/src/common/libmondo-files-EXT.h

Last change on this file 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.7 KB
RevLine 
[1]1/* libmondo-files-EXT.h */
2
3#include <sys/types.h>
4#include <unistd.h>
5
[128]6extern unsigned int updcrc(unsigned int crc, unsigned int c);
7extern unsigned int updcrcr(unsigned int crc, unsigned int c);
8extern char *calc_checksum_of_file(char *filename);
9extern long count_lines_in_file(char *filename);
10extern bool does_file_exist(char *filename);
11extern void exclude_nonexistent_files(char *inout);
12extern int figure_out_kernel_path_interactively_if_necessary(char *kernel);
13extern char *find_home_of_exe(char *fname);
14extern int get_trackno_from_logfile(char *logfile);
15extern int grab_percentage_from_last_line_of_file(char *filename);
16extern char *last_line_of_file(char *filename);
[684]17extern off_t length_of_file(char *filename);
[128]18extern int make_hole_for_file(char *outfile_fname);
19extern void make_list_of_files_to_ignore(char *ignorefiles_fname,
20 char *filelist_fname,
21 char *cklist_fname);
22extern long noof_lines_that_match_wildcard(char *filelist_fname,
23 char *wildcard);
24extern void register_pid(pid_t pid, char *name_str);
25extern long long space_occupied_by_cd(char *mountpt);
26extern int whine_if_not_found(char *fname);
27extern int write_one_liner_data_file(char *fname, char *contents);
[1]28
29
30
[1663]31extern long size_of_all_biggiefiles_K();
32extern void copy_mondo_and_mindi_stuff_to_scratchdir();
33extern void store_nfs_config();
[1]34
35
[1663]36extern void estimate_noof_media_required(long);
[1]37
[128]38extern bool is_this_file_compressed(char *);
[1]39
40
41
[128]42extern int make_hole_for_dir(char *outdir_fname);
[1]43
[128]44extern long size_of_partition_in_mountlist_K(char *tmpdir, char *dev);
[1]45
[128]46extern int make_grub_install_scriptlet(char *outfile);
47extern int read_one_liner_data_file(char *fname, char *contents);
48extern int mode_of_file(char *fname);
Note: See TracBrowser for help on using the repository browser.