[1] | 1 | /***************************************************************************
|
---|
[2211] | 2 | $Id: mondoarchive.c 3902 2024-12-17 22:39:23Z bruno $
|
---|
| 3 | * The main file for mondoarchive.
|
---|
| 4 | */
|
---|
[1] | 5 |
|
---|
| 6 | /************************* #include statements *************************/
|
---|
| 7 | #include <pthread.h>
|
---|
| 8 | #include <stdio.h>
|
---|
| 9 | #include <stdlib.h>
|
---|
[1930] | 10 | #include "my-stuff.h"
|
---|
[2211] | 11 | #include "mr_mem.h"
|
---|
[3193] | 12 | #include "mr_str.h"
|
---|
[3510] | 13 | #include "mr_msg.h"
|
---|
[3879] | 14 | #include "mondostructures.h"
|
---|
| 15 | #include "libmondo-cli-EXT.h"
|
---|
| 16 | #include "libmondo-tools-EXT.h"
|
---|
| 17 | #include "libmondo-archive-EXT.h"
|
---|
| 18 | #include "libmondo-fork-EXT.h"
|
---|
| 19 | #include "libmondo-files-EXT.h"
|
---|
| 20 | #include "libmondo-filelist-EXT.h"
|
---|
| 21 | #include "libmondo-raid-EXT.h"
|
---|
| 22 | #include "libmondo-devices-EXT.h"
|
---|
| 23 | #include "newt-specific-EXT.h"
|
---|
[1315] | 24 | #include "mondoarchive.h"
|
---|
[1] | 25 |
|
---|
| 26 | // for CVS
|
---|
[128] | 27 | //static char cvsid[] = "$Id: mondoarchive.c 3902 2024-12-17 22:39:23Z bruno $";
|
---|
[1] | 28 |
|
---|
| 29 | /************************* external variables *************************/
|
---|
| 30 | extern void set_signals(int);
|
---|
| 31 | extern int g_current_media_number;
|
---|
| 32 | extern int g_currentY;
|
---|
| 33 | extern bool g_text_mode;
|
---|
| 34 | extern char *g_boot_mountpt;
|
---|
| 35 | extern double g_kernel_version;
|
---|
| 36 |
|
---|
| 37 | /***************** global vars, used only by main.c ******************/
|
---|
[3193] | 38 | long diffs = 0L;
|
---|
[1] | 39 |
|
---|
| 40 | extern t_bkptype g_backup_media_type;
|
---|
| 41 | extern int g_loglevel;
|
---|
| 42 |
|
---|
[3193] | 43 | extern char *g_magicdev_command;
|
---|
| 44 |
|
---|
[1917] | 45 | /**
|
---|
| 46 | * Whether we're restoring from ISOs. Obviously not, since this is the
|
---|
| 47 | * backup program.
|
---|
| 48 | * @note You @b MUST declare this variable somewhere in your program if
|
---|
| 49 | * you use libmondo. Otherwise the link will fail.
|
---|
| 50 | * @ingroup globalGroup
|
---|
| 51 | */
|
---|
| 52 | bool g_ISO_restore_mode = FALSE;
|
---|
| 53 |
|
---|
[3141] | 54 | /* Whether we should fail immediately at first error */
|
---|
| 55 | bool g_fail_immediately = FALSE;
|
---|
| 56 |
|
---|
[1917] | 57 | /* Do we use extended attributes and acl ?
|
---|
| 58 | * * By default no, use --acl & --attr options to force their usage */
|
---|
| 59 | char *g_getfacl = NULL;
|
---|
| 60 | char *g_getfattr = NULL;
|
---|
[3790] | 61 | char *g_mondo_home = NULL;
|
---|
[1917] | 62 |
|
---|
[1645] | 63 | /* Reference to global bkpinfo */
|
---|
| 64 | struct s_bkpinfo *bkpinfo;
|
---|
| 65 |
|
---|
[2211] | 66 | /* No cleanup for the moment */
|
---|
| 67 | void (*mr_cleanup)(void) = NULL;
|
---|
| 68 |
|
---|
[1967] | 69 | /* To be coded */
|
---|
| 70 | void free_MR_global_filenames(void) {
|
---|
| 71 | }
|
---|
| 72 |
|
---|
[1] | 73 | /****************** subroutines used only by main.c ******************/
|
---|
| 74 |
|
---|
| 75 |
|
---|
| 76 | /**
|
---|
| 77 | * Print a "don't panic" message to the log and a message about the logfile to the screen.
|
---|
| 78 | */
|
---|
[1236] | 79 | void welcome_to_mondoarchive(void)
|
---|
[1] | 80 | {
|
---|
[1375] | 81 | char *tmp = NULL;
|
---|
| 82 |
|
---|
[3193] | 83 | log_msg(0, "Mondo Archive v%s --- http://www.mondorescue.org", PACKAGE_VERSION);
|
---|
[1375] | 84 | log_msg(0, "running %s binaries", get_architecture());
|
---|
| 85 | tmp = get_uname_m();
|
---|
| 86 | log_msg(0, "running on %s architecture", tmp);
|
---|
[2241] | 87 | mr_free(tmp);
|
---|
[3193] | 88 | log_msg(0, "-----------------------------------------------------------");
|
---|
| 89 | log_msg(0, "NB: Mondo logs almost everything, so don't panic if you see");
|
---|
| 90 | log_msg(0, "some error messages. Please read them carefully before you");
|
---|
| 91 | log_msg(0, "decide to break out in a cold sweat. Despite (or perhaps");
|
---|
| 92 | log_msg(0, "because of) the wealth of messages. some users are inclined");
|
---|
| 93 | log_msg(0, "to stop reading this log. If Mondo stopped for some reason,");
|
---|
| 94 | log_msg(0, "chances are it's detailed here. More than likely there's a");
|
---|
| 95 | log_msg(0, "message at the very end of this log that will tell you what");
|
---|
| 96 | log_msg(0, "is wrong. Please read it! -Devteam");
|
---|
| 97 | log_msg(0, "-----------------------------------------------------------");
|
---|
[1] | 98 |
|
---|
[128] | 99 | log_msg(0, "Zero...");
|
---|
| 100 | log_msg(1, "One...");
|
---|
| 101 | log_msg(2, "Two...");
|
---|
| 102 | log_msg(3, "Three...");
|
---|
| 103 | log_msg(4, "Four...");
|
---|
| 104 | log_msg(5, "Five...");
|
---|
| 105 | log_msg(6, "Six...");
|
---|
| 106 | log_msg(7, "Seven...");
|
---|
| 107 | log_msg(8, "Eight...");
|
---|
| 108 | printf("See %s for details of backup run.\n", MONDO_LOGFILE);
|
---|
[1] | 109 | }
|
---|
| 110 |
|
---|
| 111 |
|
---|
| 112 | /**
|
---|
| 113 | * Do whatever is necessary to insure a successful backup on the Linux distribution
|
---|
| 114 | * of the day.
|
---|
| 115 | */
|
---|
[1236] | 116 | void distro_specific_kludges_at_start_of_mondoarchive(void)
|
---|
[1] | 117 | {
|
---|
[128] | 118 | log_msg(2, "Unmounting old ramdisks if necessary");
|
---|
| 119 | stop_magicdev_if_necessary(); // for RH+Gnome users
|
---|
[2030] | 120 | /*
|
---|
[128] | 121 | run_program_and_log_output
|
---|
| 122 | ("umount `mount | grep shm | grep mondo | cut -d' ' -f3`", 2);
|
---|
[2030] | 123 | */
|
---|
[128] | 124 | unmount_supermounts_if_necessary(); // for Mandrake users whose CD-ROMs are supermounted
|
---|
| 125 | // stop_autofs_if_necessary(); // for Xandros users
|
---|
| 126 | mount_boot_if_necessary(); // for Gentoo users with non-mounted /boot partitions
|
---|
| 127 | clean_up_KDE_desktop_if_necessary(); // delete various misc ~/.* files that get in the way
|
---|
[1] | 128 | }
|
---|
| 129 |
|
---|
| 130 |
|
---|
| 131 |
|
---|
| 132 | /**
|
---|
| 133 | * Undo whatever was done by distro_specific_kludges_at_start_of_mondoarchive().
|
---|
| 134 | */
|
---|
[1236] | 135 | void distro_specific_kludges_at_end_of_mondoarchive(void)
|
---|
[1] | 136 | {
|
---|
[128] | 137 | log_msg(2, "Restarting magicdev if necessary");
|
---|
| 138 | sync();
|
---|
| 139 | restart_magicdev_if_necessary(); // for RH+Gnome users
|
---|
[1] | 140 |
|
---|
[128] | 141 | log_msg(2, "Restarting autofs if necessary");
|
---|
| 142 | sync();
|
---|
| 143 | // restart_autofs_if_necessary(); // for Xandros users
|
---|
[1] | 144 |
|
---|
[128] | 145 | log_msg(2, "Restarting supermounts if necessary");
|
---|
| 146 | sync();
|
---|
| 147 | remount_supermounts_if_necessary(); // for Mandrake users
|
---|
[1] | 148 |
|
---|
[128] | 149 | log_msg(2, "Unmounting /boot if necessary");
|
---|
| 150 | sync();
|
---|
| 151 | unmount_boot_if_necessary(); // for Gentoo users
|
---|
[1] | 152 |
|
---|
| 153 | // log_msg( 2, "Cleaning up KDE desktop");
|
---|
| 154 | // clean_up_KDE_desktop_if_necessary();
|
---|
| 155 | }
|
---|
| 156 |
|
---|
| 157 |
|
---|
| 158 | /**
|
---|
| 159 | * Backup/verify the user's data.
|
---|
| 160 | * What did you think it did, anyway? :-)
|
---|
| 161 | */
|
---|
[128] | 162 | int main(int argc, char *argv[])
|
---|
[1] | 163 | {
|
---|
[2241] | 164 | char *tmp = NULL;
|
---|
[2113] | 165 | char *tmp1 = NULL;
|
---|
[3193] | 166 | int res = 0;
|
---|
| 167 | int retval = 0;
|
---|
[2211] | 168 | char *say_at_end = NULL;
|
---|
[2982] | 169 | FILE *fin = NULL;
|
---|
[1] | 170 |
|
---|
[3208] | 171 | /* If -V, -v or --version then echo version no. and quit */
|
---|
[3193] | 172 | if (argc == 2 && (!strcmp(argv[argc - 1], "-v") || !strcmp(argv[argc - 1], "-V") || !strcmp(argv[argc - 1], "--version"))) {
|
---|
[541] | 173 | printf("mondoarchive v%s\nSee man page for help\n", PACKAGE_VERSION);
|
---|
[3333] | 174 | if (getuid() != 0) fprintf(stderr, "Please run the mondoarchive command as root.\n");
|
---|
| 175 | exit(0);
|
---|
[128] | 176 | }
|
---|
[1] | 177 |
|
---|
[3333] | 178 | /* Make sure I'm root; abort if not */
|
---|
| 179 | if (getuid() != 0) {
|
---|
| 180 | fprintf(stderr, "Please run as root.\n");
|
---|
| 181 | exit(127);
|
---|
| 182 | }
|
---|
| 183 |
|
---|
[3208] | 184 | /* initialize log file with time stamp */
|
---|
| 185 | unlink(MONDO_LOGFILE);
|
---|
| 186 | log_msg(0, "Time started: %s", mr_date());
|
---|
[1] | 187 |
|
---|
[3208] | 188 | /* Initialize variables */
|
---|
[3902] | 189 | alloc_bkpinfo();
|
---|
| 190 |
|
---|
[3827] | 191 | /* Now on we can use finish to exit as bkpinfo has been initialized */
|
---|
[3208] | 192 | log_msg(9, "reset_bkpinfo");
|
---|
[1652] | 193 | reset_bkpinfo();
|
---|
[1] | 194 |
|
---|
[3193] | 195 | /* Memory allocation is done in those functions */
|
---|
[1652] | 196 | malloc_libmondo_global_strings();
|
---|
[1] | 197 |
|
---|
[807] | 198 | /* make sure PATH environmental variable allows access to mkfs, fdisk, etc. */
|
---|
[3185] | 199 | mr_asprintf(tmp1,"%s:/sbin:/usr/sbin:/usr/local/sbin",getenv("PATH"));
|
---|
[2113] | 200 | setenv("PATH", tmp1, 1);
|
---|
[3193] | 201 | mr_free(tmp1);
|
---|
[1] | 202 |
|
---|
[424] | 203 | /* Add MONDO_SHARE environment variable for mindi */
|
---|
| 204 | setenv_mondo_share();
|
---|
[258] | 205 |
|
---|
[807] | 206 | /* Configure the bkpinfo structure, global file paths, etc. */
|
---|
[128] | 207 | g_main_pid = getpid();
|
---|
| 208 | log_msg(9, "This");
|
---|
[1] | 209 |
|
---|
[128] | 210 | set_signals(TRUE); // catch SIGTERM, etc.
|
---|
| 211 | run_program_and_log_output("dmesg -n1", TRUE);
|
---|
[1] | 212 |
|
---|
[128] | 213 | log_msg(9, "Next");
|
---|
[1747] | 214 | make_hole_for_dir(MONDO_CACHE);
|
---|
| 215 |
|
---|
[128] | 216 | welcome_to_mondoarchive();
|
---|
| 217 | distro_specific_kludges_at_start_of_mondoarchive();
|
---|
| 218 | g_kernel_version = get_kernel_version();
|
---|
[1] | 219 |
|
---|
[128] | 220 | if (argc == 4 && !strcmp(argv[1], "getfattr")) {
|
---|
| 221 | g_loglevel = 10;
|
---|
| 222 | setup_newt_stuff();
|
---|
| 223 | if (!strstr(argv[2], "filelist")) {
|
---|
[541] | 224 | printf("Sorry - filelist goes first\n");
|
---|
[128] | 225 | finish(1);
|
---|
| 226 | } else {
|
---|
| 227 | finish(get_fattr_list(argv[2], argv[3]));
|
---|
| 228 | }
|
---|
| 229 | finish(0);
|
---|
[1] | 230 | }
|
---|
[128] | 231 | if (argc == 4 && !strcmp(argv[1], "setfattr")) {
|
---|
| 232 | g_loglevel = 10;
|
---|
| 233 | setup_newt_stuff();
|
---|
| 234 | finish(set_fattr_list(argv[2], argv[3]));
|
---|
[1] | 235 | }
|
---|
[128] | 236 |
|
---|
| 237 | if (argc == 3 && !strcmp(argv[1], "wildcards")) {
|
---|
| 238 | g_loglevel = 10;
|
---|
| 239 | setup_newt_stuff();
|
---|
[3194] | 240 | tmp1 = mr_stresc(argv[2], "[]*?", '\\', '\'');
|
---|
[3193] | 241 | printf("in=%s; out=%s\n", argv[2], tmp1);
|
---|
| 242 | mr_free(tmp1);
|
---|
[128] | 243 | finish(1);
|
---|
[1] | 244 | }
|
---|
[128] | 245 |
|
---|
| 246 | if (argc == 4 && !strcmp(argv[1], "getfacl")) {
|
---|
| 247 | g_loglevel = 10;
|
---|
| 248 | setup_newt_stuff();
|
---|
| 249 | if (!strstr(argv[2], "filelist")) {
|
---|
[541] | 250 | printf("Sorry - filelist goes first\n");
|
---|
[128] | 251 | finish(1);
|
---|
| 252 | } else {
|
---|
| 253 | finish(get_acl_list(argv[2], argv[3]));
|
---|
| 254 | }
|
---|
| 255 | finish(0);
|
---|
| 256 | }
|
---|
| 257 | if (argc == 4 && !strcmp(argv[1], "setfacl")) {
|
---|
| 258 | g_loglevel = 10;
|
---|
| 259 | setup_newt_stuff();
|
---|
| 260 | finish(set_acl_list(argv[2], argv[3]));
|
---|
| 261 | }
|
---|
[2982] | 262 | if (argc >= 2 && !strcmp(argv[1], "mkraidtab")) {
|
---|
| 263 | g_loglevel = 10;
|
---|
| 264 | setup_newt_stuff();
|
---|
| 265 | #undef MDSTAT_FILE
|
---|
| 266 | #define MDSTAT_FILE "/tmp/mdstat"
|
---|
| 267 | if (!(fin = fopen(MDSTAT_FILE, "r"))) {
|
---|
[3380] | 268 | log_msg(1, "Could not open %s.", MDSTAT_FILE);
|
---|
[2982] | 269 | finish(1);
|
---|
| 270 | }
|
---|
[1] | 271 |
|
---|
[2982] | 272 | create_raidtab_from_mdstat(MDSTAT_FILE,"/tmp/raidtab");
|
---|
| 273 | finish(0);
|
---|
| 274 | }
|
---|
| 275 |
|
---|
[3892] | 276 | if (argc > 2 && !strcmp(argv[1], "find-optical")) {
|
---|
[128] | 277 | g_loglevel = 10;
|
---|
| 278 | setup_newt_stuff();
|
---|
[3875] | 279 | if ((tmp = find_optical_device()) == NULL) {
|
---|
| 280 | printf("Failed to find optical drive\n");
|
---|
[128] | 281 | } else {
|
---|
[3875] | 282 | printf("Optical drive is at %s\n", tmp);
|
---|
[128] | 283 | }
|
---|
[3193] | 284 | mr_free(tmp);
|
---|
[128] | 285 | finish(0);
|
---|
| 286 | }
|
---|
[1] | 287 |
|
---|
[128] | 288 | if (argc > 2 && !strcmp(argv[1], "disksize")) {
|
---|
| 289 | printf("%s --> %ld\n", argv[2], get_phys_size_of_drive(argv[2]));
|
---|
| 290 | finish(0);
|
---|
| 291 | }
|
---|
| 292 | if (argc > 2 && !strcmp(argv[1], "test-dev")) {
|
---|
| 293 | if (is_dev_an_NTFS_dev(argv[2])) {
|
---|
[541] | 294 | printf("%s is indeed an NTFS dev\n", argv[2]);
|
---|
[128] | 295 | } else {
|
---|
[541] | 296 | printf("%s is _not_ an NTFS dev\n", argv[2]);
|
---|
[128] | 297 | }
|
---|
| 298 | finish(0);
|
---|
| 299 | }
|
---|
| 300 |
|
---|
[3509] | 301 | /* setup log level for new log system as well */
|
---|
[3628] | 302 | mr_msg_init(MONDO_LOGFILE,g_loglevel, argc, argv);
|
---|
[3509] | 303 |
|
---|
[1645] | 304 | if (pre_param_configuration()) {
|
---|
[3193] | 305 | fatal_error("Pre-param initialization phase failed. Please review the error messages above, make the specified changes, then try again. Exiting...");
|
---|
[128] | 306 | }
|
---|
| 307 |
|
---|
[3193] | 308 | /* Process command line, if there is one. If not, ask user for info. */
|
---|
[3629] | 309 | /* In case we just used -K xx then go interactive as well */
|
---|
| 310 | if ((argc == 1) || ((argc == 3) && (strcmp(argv[1],"-K") == 0))) {
|
---|
[128] | 311 | g_text_mode = FALSE;
|
---|
[3477] | 312 | setup_newt_stuff();
|
---|
[1645] | 313 | res = interactively_obtain_media_parameters_from_user(TRUE); /* yes, archiving */
|
---|
[128] | 314 | if (res) {
|
---|
[3193] | 315 | fatal_error("Syntax error. Please review the parameters you have supplied and try again.");
|
---|
[128] | 316 | }
|
---|
| 317 | } else {
|
---|
[1645] | 318 | res = handle_incoming_parameters(argc, argv);
|
---|
[128] | 319 | if (res) {
|
---|
[3193] | 320 | printf("Errors were detected in the command line you supplied.\n");
|
---|
[1319] | 321 | printf("Please review the log file - %s\n", MONDO_LOGFILE );
|
---|
[128] | 322 | log_msg(1, "Mondoarchive will now exit.");
|
---|
| 323 | finish(1);
|
---|
| 324 | }
|
---|
[3477] | 325 | setup_newt_stuff();
|
---|
[1] | 326 | }
|
---|
| 327 |
|
---|
[3208] | 328 | /* Finish configuring global structures */
|
---|
[1645] | 329 | if (post_param_configuration()) {
|
---|
[3193] | 330 | fatal_error("Post-param initialization phase failed. Perhaps bad parameters were supplied to mondoarchive? Please review the documentation, error messages and logs. Exiting...");
|
---|
[128] | 331 | }
|
---|
[1] | 332 |
|
---|
[128] | 333 | /* If we're meant to backup then backup */
|
---|
| 334 | if (bkpinfo->backup_data) {
|
---|
[1645] | 335 | res = backup_data();
|
---|
[128] | 336 | retval += res;
|
---|
| 337 | if (res) {
|
---|
[3185] | 338 | mr_asprintf(say_at_end, "Data archived. Please check the logs, just as a precaution. ");
|
---|
[128] | 339 | } else {
|
---|
[3185] | 340 | mr_asprintf(say_at_end, "Data archived OK. ");
|
---|
[128] | 341 | }
|
---|
| 342 | }
|
---|
[1] | 343 |
|
---|
| 344 | /* If we're meant to verify then verify */
|
---|
[128] | 345 | if (bkpinfo->verify_data) {
|
---|
[1645] | 346 | res = verify_data();
|
---|
[128] | 347 | if (res < 0) {
|
---|
[3193] | 348 | mr_asprintf(tmp, "%d difference%c found.", -res, (-res != 1) ? 's' : ' ');
|
---|
[3185] | 349 | mr_asprintf(say_at_end, "%s", tmp);
|
---|
[128] | 350 | log_to_screen(tmp);
|
---|
[2241] | 351 | mr_free(tmp);
|
---|
[128] | 352 | res = 0;
|
---|
| 353 | }
|
---|
| 354 | retval += res;
|
---|
| 355 | }
|
---|
[1] | 356 |
|
---|
| 357 | /* Report result of entire operation (success? errors?) */
|
---|
[128] | 358 | if (!retval) {
|
---|
[3428] | 359 | mvaddstr_and_log_it(g_currentY++, 0, "Backup and/or verify ran to completion. Everything appears to be fine.");
|
---|
[128] | 360 | } else {
|
---|
[3428] | 361 | mvaddstr_and_log_it(g_currentY++, 0, "Backup and/or verify ran to completion. However, errors did occur.");
|
---|
[128] | 362 | }
|
---|
[1] | 363 |
|
---|
[3527] | 364 | if (does_file_exist(MINDI_CACHE"/mindi.iso")) {
|
---|
| 365 | log_to_screen(MINDI_CACHE"/mindi.iso, a boot/utility CD, is available if you want it.");
|
---|
[128] | 366 | }
|
---|
[1] | 367 |
|
---|
[1747] | 368 | if (length_of_file(MONDO_CACHE"/changed.files") > 2) {
|
---|
[128] | 369 | if (g_text_mode) {
|
---|
[1747] | 370 | log_to_screen("Type 'less "MONDO_CACHE"/changed.files' to see which files don't match the archives");
|
---|
[128] | 371 | } else {
|
---|
[1747] | 372 | log_msg(1, "Type 'less "MONDO_CACHE"/changed.files' to see which files don't match the archives");
|
---|
[128] | 373 | log_msg(2, "Calling popup_changelist_from_file()");
|
---|
[1747] | 374 | popup_changelist_from_file(MONDO_CACHE"/changed.files");
|
---|
[128] | 375 | log_msg(2, "Returned from popup_changelist_from_file()");
|
---|
| 376 | }
|
---|
| 377 | } else {
|
---|
[1747] | 378 | unlink(MONDO_CACHE"/changed.files");
|
---|
[128] | 379 | }
|
---|
[2211] | 380 | if (say_at_end != NULL) {
|
---|
| 381 | log_to_screen(say_at_end);
|
---|
[3193] | 382 | mr_free(say_at_end);
|
---|
[2211] | 383 | }
|
---|
[3185] | 384 | mr_asprintf(tmp, "umount %s/tmpfs", bkpinfo->tmpdir);
|
---|
[128] | 385 | run_program_and_log_output(tmp, TRUE);
|
---|
[2241] | 386 | mr_free(tmp);
|
---|
[1697] | 387 | if (bkpinfo->backup_media_type == usb) {
|
---|
| 388 | log_msg(1, "Unmounting USB device.");
|
---|
[3193] | 389 | if (bkpinfo->media_device == NULL) {
|
---|
| 390 | fatal_error("USB device set to NULL");
|
---|
| 391 | }
|
---|
[3185] | 392 | mr_asprintf(tmp, "umount %s1", bkpinfo->media_device);
|
---|
[1697] | 393 | run_program_and_log_output(tmp, TRUE);
|
---|
[2241] | 394 | mr_free(tmp);
|
---|
[1697] | 395 | }
|
---|
[1] | 396 |
|
---|
[128] | 397 | run_program_and_log_output("mount", 2);
|
---|
[1] | 398 |
|
---|
[3060] | 399 | paranoid_system("rm -f "MONDO_CACHE"/last-backup.aborted");
|
---|
[128] | 400 | if (!retval) {
|
---|
[541] | 401 | printf("Mondoarchive ran OK.\n");
|
---|
[128] | 402 | } else {
|
---|
[541] | 403 | printf("Errors occurred during backup. Please check logfile.\n");
|
---|
[128] | 404 | }
|
---|
| 405 | distro_specific_kludges_at_end_of_mondoarchive();
|
---|
| 406 | set_signals(FALSE);
|
---|
[1644] | 407 |
|
---|
[128] | 408 | free_libmondo_global_strings();
|
---|
[1703] | 409 |
|
---|
[810] | 410 | /* finalize log file with time stamp */
|
---|
[813] | 411 | log_msg(0, "Time finished: %s", mr_date());
|
---|
[810] | 412 |
|
---|
[3060] | 413 | if (chdir("/tmp")) {
|
---|
| 414 | // FIXME
|
---|
| 415 | }
|
---|
[1644] | 416 |
|
---|
[128] | 417 | if (!g_text_mode) {
|
---|
[3193] | 418 | popup_and_OK("Mondo Archive has finished its run. Please press ENTER to return to the shell prompt.");
|
---|
[541] | 419 | log_to_screen("See %s for details of backup run.", MONDO_LOGFILE);
|
---|
[128] | 420 | } else {
|
---|
[541] | 421 | printf("See %s for details of backup run.\n", MONDO_LOGFILE);
|
---|
[128] | 422 | }
|
---|
[3509] | 423 | mr_msg_close();
|
---|
[1703] | 424 | finish(retval);
|
---|
[128] | 425 |
|
---|
| 426 | return EXIT_SUCCESS;
|
---|
[1] | 427 | }
|
---|