source: MondoRescue/branches/2.2.10/mondo/src/common/libmondo-tools.h@ 2475

Last change on this file since 2475 was 2475, checked in by Bruno Cornec, 14 years ago
  • Update deplist for Debian support
  • Fix #363 where exclude_paths was extended up to memory limit dumping core
  • Default to DVD size when in iso or netfs mode
  • Improve analysis of kernel modules by printing whether it's a live or extra module which has not been found (Matthew Cline) as reported in #362
  • Remove useless pb_log and MONDO_TRACEFILE
  • /dev/shm is now part of the default exclude list
  • some distro hold lvm commands under /usr/sbin
  • bzip2 is under /bin on Debian

(merge from 2.2.9 branch)

  • Property svn:keywords set to Id
File size: 1.4 KB
Line 
1 /* libmondo-tools.h
2 * $Id: libmondo-tools.h 2475 2009-11-10 13:52:43Z bruno $
3 */
4
5void clean_up_KDE_desktop_if_necessary(void);
6
7long get_time();
8extern void (*log_debug_msg) (int debug_level, const char *szFile,
9 const char *szFunction, int nLine,
10 const char *fmt, ...);
11void standard_log_debug_msg(int debug_level, const char *szFile,
12 const char *szFunction, int nLine,
13 const char *fmt, ...);
14char *read_cfg_var(char *config_file, char *label);
15int write_cfg_var(char *config_file, char *label, char *value);
16void init_bkpinfo();
17#ifdef __FreeBSD__
18void initialize_raidrec(struct vinum_volume *vv);
19#else
20void initialize_raidrec(struct raid_device_record *raidrec);
21#endif
22int some_basic_system_sanity_checks();
23
24
25void insmod_crucial_modules(void);
26int find_and_store_mondoarchives_home(char *home_sz);
27
28
29void unmount_supermounts_if_necessary(void);
30void remount_supermounts_if_necessary(void);
31
32int post_param_configuration();
33
34
35int pre_param_configuration();
36
37long free_space_on_given_partition(char *partition);
38
39
40
41void mount_boot_if_necessary(void);
42void unmount_boot_if_necessary(void);
43
44void restart_autofs_if_necessary(void);
45void malloc_libmondo_global_strings(void);
46void free_libmondo_global_strings(void);
47
48double get_kernel_version();
49char *get_architecture();
50char *get_uname_m();
51bool does_nonMS_partition_exist(void);
52void stop_magicdev_if_necessary(void);
53void restart_magicdev_if_necessary(void);
54void stop_autofs_if_necessary(void);
55void restart_autofs_if_necessary(void);
Note: See TracBrowser for help on using the repository browser.