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