source: MondoRescue/branches/stable/mondo/src/common/libmondo-fork.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: 671 bytes
Line 
1/* libmondo-fork.h
2 * $Id: libmondo-fork.h 1663 2007-09-27 10:21:18Z bruno $
3 */
4
5
6
7char *call_program_and_get_last_line_of_output(char *call);
8int run_program_and_log_to_screen(char *basic_call, char *what_i_am_doing);
9int run_program_and_log_output(char *program, int);
10int eval_call_to_make_ISO(char *basic_call, char *isofile,
11 int cd_no, char *logstub, char *what_i_am_doing);
12
13int run_external_binary_with_percentage_indicator_OLD(char *tt, char *cmd);
14int run_external_binary_with_percentage_indicator_NEW(char *tt, char *cmd);
15int copy_from_src_to_dest(FILE *, FILE *, char);
16int feed_into_ntfsprog(char *input_device, char *output_fname);
17int feed_outfrom_ntfsprog(char *output_device, char *input_fifo);
Note: See TracBrowser for help on using the repository browser.