]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - src/install+setup/install/main.c
installer: Write fstab
[people/pmueller/ipfire-2.x.git] / src / install+setup / install / main.c
CommitLineData
2bb7b134 1
d6aaa55d
MT
2/* SmoothWall install program.
3 *
4 * This program is distributed under the terms of the GNU General Public
5 * Licence. See the file COPYING for details.
6 *
7 * (c) Lawrence Manning, 2001
f9cc0d70 8 * Contains main entry point, and misc functions.6
d6aaa55d 9 *
d6aaa55d 10 */
10bc6f06 11
72d80898 12#define _GNU_SOURCE
f0fa1795
MT
13
14#include <assert.h>
15#include <errno.h>
16#include <stdlib.h>
17#include <string.h>
18#include <sys/mount.h>
19
20#include "hw.h"
21#include "install.h"
72d80898 22
68561214 23#define INST_FILECOUNT 21000
33634aa8 24#define UNATTENDED_CONF "/cdrom/boot/unattended.conf"
918546e2 25#define LICENSE_FILE "/cdrom/COPYING"
d6aaa55d 26
d6aaa55d
MT
27FILE *flog = NULL;
28char *mylog;
10bc6f06 29
d6aaa55d
MT
30char **ctr;
31
d6aaa55d
MT
32extern char url[STRING_SIZE];
33
f9cc0d70
HS
34struct nic nics[20] = { { "" , "" , "" } }; // only defined for compile
35struct knic knics[20] = { { "" , "" , "" , "" } }; // only defined for compile
5057b611 36
10bc6f06 37extern char *en_tr[];
cf4dd3c0 38extern char *es_tr[];
10bc6f06 39extern char *de_tr[];
462515e4 40extern char *fr_tr[];
1d76272b 41extern char *nl_tr[];
b6c9668f 42extern char *pl_tr[];
2bb7b134 43extern char *ru_tr[];
910193da 44extern char *tr_tr[];
d6aaa55d 45
d7dd283b
MT
46static int newtChecklist(const char* title, const char* message,
47 unsigned int width, unsigned int height, unsigned int num_entries,
48 const char** entries, int* states) {
49 int ret;
50 const int list_height = 4;
51
52 char cbstates[num_entries];
53
54 for (unsigned int i = 0; i < num_entries; i++) {
55 cbstates[i] = states[i] ? '*' : ' ';
56 }
57
58 newtCenteredWindow(width, height, title);
59
60 newtComponent textbox = newtTextbox(1, 1, width - 2, height - 6 - list_height,
61 NEWT_FLAG_WRAP);
62 newtTextboxSetText(textbox, message);
63
64 int top = newtTextboxGetNumLines(textbox) + 2;
65
66 newtComponent form = newtForm(NULL, NULL, 0);
67
68 newtComponent sb = NULL;
69 if (list_height < num_entries) {
70 sb = newtVerticalScrollbar(
71 width - 4, top + 1, list_height,
72 NEWT_COLORSET_CHECKBOX, NEWT_COLORSET_ACTCHECKBOX);
73
74 newtFormAddComponent(form, sb);
75 }
76
77 newtComponent subform = newtForm(sb, NULL, 0);
78 newtFormSetBackground(subform, NEWT_COLORSET_CHECKBOX);
79
80 newtFormSetHeight(subform, list_height);
81 newtFormSetWidth(subform, width - 10);
82
83 for (unsigned int i = 0; i < num_entries; i++) {
84 newtComponent cb = newtCheckbox(4, top + i, entries[i], cbstates[i],
85 NULL, &cbstates[i]);
86
87 newtFormAddComponent(subform, cb);
88 }
89
90 newtFormAddComponents(form, textbox, subform, NULL);
91
92 newtComponent btn_okay = newtButton((width - 18) / 3, height - 4, ctr[TR_OK]);
93 newtComponent btn_cancel = newtButton((width - 18) / 3 * 2 + 9, height - 4, ctr[TR_CANCEL]);
94 newtFormAddComponents(form, btn_okay, btn_cancel, NULL);
95
96 newtComponent answer = newtRunForm(form);
97
98 if ((answer == NULL) || (answer == btn_cancel)) {
99 ret = -1;
100 } else {
101 ret = 0;
102
103 for (unsigned int i = 0; i < num_entries; i++) {
104 states[i] = (cbstates[i] != ' ');
105
106 if (states[i])
107 ret++;
108 }
109 }
110
111 newtFormDestroy(form);
112 newtPopWindow();
113
114 return ret;
115}
116
117static int newtWinOkCancel(const char* title, const char* message, int width, int height,
118 const char* btn_txt_ok, const char* btn_txt_cancel) {
119 int ret = 1;
120
121 newtCenteredWindow(width, height, title);
122
123 newtComponent form = newtForm(NULL, NULL, 0);
124
125 newtComponent textbox = newtTextbox(1, 1, width - 2, height - 6, NEWT_FLAG_WRAP);
126 newtTextboxSetText(textbox, message);
127 newtFormAddComponent(form, textbox);
128
129 newtComponent btn_ok = newtButton((width - 16) / 3, height - 4, btn_txt_ok);
130 newtComponent btn_cancel = newtButton((width - 16) / 3 * 2 + 9, height - 4,
131 btn_txt_cancel);
132
133 newtFormAddComponents(form, btn_ok, btn_cancel, NULL);
134
135 newtComponent answer = newtRunForm(form);
136
137 if (answer == btn_ok) {
138 ret = 0;
139 }
140
141 newtFormDestroy(form);
142 newtPopWindow();
143
144 return ret;
145}
146
bd5e7c29
MT
147static int newtLicenseBox(const char* title, const char* text, int width, int height) {
148 int ret = 1;
149
150 newtCenteredWindow(width, height, title);
151
152 newtComponent form = newtForm(NULL, NULL, 0);
153
154 newtComponent textbox = newtTextbox(1, 1, width - 2, height - 7,
155 NEWT_FLAG_WRAP|NEWT_FLAG_SCROLL);
156 newtTextboxSetText(textbox, text);
157 newtFormAddComponent(form, textbox);
158
159 char choice;
160 newtComponent checkbox = newtCheckbox(3, height - 3, ctr[TR_LICENSE_ACCEPT],
161 ' ', " *", &choice);
162
163 newtComponent btn = newtButton(width - 15, height - 4, ctr[TR_OK]);
164
165 newtFormAddComponents(form, checkbox, btn, NULL);
166
167 newtComponent answer = newtRunForm(form);
168 if (answer == btn && choice == '*')
169 ret = 0;
170
171 newtFormDestroy(form);
172 newtPopWindow();
173
174 return ret;
175}
176
f0fa1795
MT
177int main(int argc, char *argv[]) {
178 struct hw* hw = hw_init();
e0bbaf87
AF
179
180 char discl_msg[40000] = "Disclaimer\n";
181
910193da
EY
182 char *langnames[] = { "Deutsch", "English", "Français", "Español", "Nederlands", "Polski", "Русский", "Türkçe", NULL };
183 char *shortlangnames[] = { "de", "en", "fr", "es", "nl", "pl", "ru", "tr", NULL };
184 char **langtrs[] = { de_tr, en_tr, fr_tr, es_tr, nl_tr, pl_tr, ru_tr, tr_tr, NULL };
f0fa1795 185 char* sourcedrive = NULL;
72d80898 186 int rc = 0;
d6aaa55d 187 char commandstring[STRING_SIZE];
d6aaa55d
MT
188 int choice;
189 char shortlangname[10];
d7dd283b 190 char message[STRING_SIZE];
d6aaa55d
MT
191 char title[STRING_SIZE];
192 int allok = 0;
e0bbaf87 193 FILE *handle, *cmdfile, *copying;
d6aaa55d 194 char line[STRING_SIZE];
5057b611 195
72d80898 196 int unattended = 0;
5faa66cf 197 int serialconsole = 0;
72d80898 198 struct keyvalue *unattendedkv = initkeyvalues();
66335974 199 char restore_file[STRING_SIZE] = "";
d6aaa55d
MT
200
201 setlocale (LC_ALL, "");
10bc6f06 202 sethostname( SNAME , 10);
72d80898 203
d6aaa55d
MT
204 /* Log file/terminal stuff. */
205 if (argc >= 2)
206 {
207 if (!(flog = fopen(argv[1], "w+")))
208 return 0;
209 }
210 else
211 return 0;
212
213 mylog = argv[1];
214
215 fprintf(flog, "Install program started.\n");
216
217 newtInit();
218 newtCls();
219
7ea444c8
AF
220 newtDrawRootText(14, 0, NAME " " VERSION " - " SLOGAN );
221 sprintf (title, "%s %s - %s", NAME, VERSION, SLOGAN);
222
d6aaa55d
MT
223 if (! (cmdfile = fopen("/proc/cmdline", "r")))
224 {
225 fprintf(flog, "Couldn't open commandline: /proc/cmdline\n");
226 } else {
227 fgets(line, STRING_SIZE, cmdfile);
61e3d218 228
72d80898 229 // check if we have to make an unattended install
ee78a5ef 230 if (strstr (line, "unattended") != NULL) {
72d80898 231 unattended = 1;
bba7212c
MT
232 runcommandwithstatus("/bin/sleep 10", "WARNING: Unattended installation will start in 10 seconds...");
233 }
5faa66cf
AF
234 // check if we have to patch for serial console
235 if (strstr (line, "console=ttyS0") != NULL) {
236 serialconsole = 1;
237 }
d6aaa55d 238 }
0db33b56 239
7ea444c8 240 // Load common modules
bba7212c 241 mysystem("/sbin/modprobe vfat"); // USB key
4a0d9bef
MT
242 hw_stop_all_raid_arrays();
243
72d80898 244 /* German is the default */
d6aaa55d
MT
245 for (choice = 0; langnames[choice]; choice++)
246 {
215bd18d 247 if (strcmp(langnames[choice], "English") == 0)
d6aaa55d
MT
248 break;
249 }
250 if (!langnames[choice])
251 goto EXIT;
252
72d80898 253 if (!unattended) {
51f3b7f5 254 rc = newtWinMenu("Language selection", "Select the language you wish to use for the " NAME ".", 50, 5, 5, 8,
72d80898
MT
255 langnames, &choice, "Ok", NULL);
256 }
257
d6aaa55d
MT
258 ctr = langtrs[choice];
259 strcpy(shortlangname, shortlangnames[choice]);
3d6e1202 260
d6aaa55d 261 newtPushHelpLine(ctr[TR_HELPLINE]);
0db33b56 262
e0bbaf87 263 if (!unattended) {
c5685c24
MT
264 sprintf(message, ctr[TR_WELCOME], NAME);
265 newtWinMessage(title, ctr[TR_OK], message);
e0bbaf87
AF
266 }
267
f0fa1795
MT
268 /* Search for a source drive that holds the right
269 * version of the image we are going to install. */
270 sourcedrive = hw_find_source_medium(hw);
9607771a 271
f0fa1795
MT
272 fprintf(flog, "Source drive: %s\n", sourcedrive);
273 if (!sourcedrive) {
0f680bcc 274 newtWinMessage(title, ctr[TR_OK], ctr[TR_NO_LOCAL_SOURCE]);
f0fa1795 275 runcommandwithstatus("/bin/downloadsource.sh", ctr[TR_DOWNLOADING_ISO]);
0f680bcc
AF
276 if ((handle = fopen("/tmp/source_device", "r")) == NULL) {
277 errorbox(ctr[TR_DOWNLOAD_ERROR]);
278 goto EXIT;
279 }
f0fa1795
MT
280
281 fgets(sourcedrive, 5, handle);
282 fclose(handle);
72d80898 283 }
0f680bcc 284
f0fa1795
MT
285 assert(sourcedrive);
286
25fcce25 287 int r = hw_mount(sourcedrive, SOURCE_MOUNT_PATH, "iso9660", MS_RDONLY);
f0fa1795
MT
288 if (r) {
289 fprintf(flog, "Could not mount %s to %s\n", sourcedrive, SOURCE_MOUNT_PATH);
290 fprintf(flog, strerror(errno));
291 exit(1);
292 }
918546e2 293
d7dd283b
MT
294 /* load unattended configuration */
295 if (unattended) {
296 fprintf(flog, "unattended: Reading unattended.conf\n");
297
298 (void) readkeyvalues(unattendedkv, UNATTENDED_CONF);
299 findkey(unattendedkv, "RESTORE_FILE", restore_file);
300 }
301
918546e2
MT
302 if (!unattended) {
303 // Read the license file.
304 if (!(copying = fopen(LICENSE_FILE, "r"))) {
305 sprintf(discl_msg, "Could not open license file: %s\n", LICENSE_FILE);
306 fprintf(flog, discl_msg);
307 } else {
308 fread(discl_msg, 1, 40000, copying);
309 fclose(copying);
310
bd5e7c29 311 if (newtLicenseBox(title, discl_msg, 75, 20)) {
918546e2 312 errorbox(ctr[TR_LICENSE_NOT_ACCEPTED]);
bd5e7c29 313
918546e2
MT
314 goto EXIT;
315 }
316 }
317 }
318
d7dd283b 319 int part_type = HW_PART_TYPE_NORMAL;
ee78a5ef 320
d7dd283b
MT
321 // Scan for disks to install on.
322 struct hw_disk** disks = hw_find_disks(hw);
323
324 struct hw_disk** selected_disks = NULL;
325 unsigned int num_selected_disks = 0;
326
327 // Check how many disks have been found and what
328 // we can do with them.
329 unsigned int num_disks = hw_count_disks(disks);
330
331 while (1) {
332 // no harddisks found
333 if (num_disks == 0) {
334 errorbox(ctr[TR_NO_HARDDISK]);
335 goto EXIT;
336
337 // exactly one disk has been found
338 } else if (num_disks == 1) {
339 selected_disks = hw_select_disks(disks, NULL);
340
341 // more than one usable disk has been found and
342 // the user needs to choose what to do with them
343 } else {
344 const char* disk_names[num_disks];
345 int disk_selection[num_disks];
346
347 for (unsigned int i = 0; i < num_disks; i++) {
348 disk_names[i] = &disks[i]->description;
349 disk_selection[i] = 0;
350 }
351
352 while (!selected_disks) {
353 rc = newtChecklist(ctr[TR_DISK_SELECTION], ctr[TR_DISK_SELECTION_MSG],
354 50, 20, num_disks, disk_names, disk_selection);
355
356 // Error
357 if (rc < 0) {
358 goto EXIT;
359
360 // Nothing has been selected
361 } else if (rc == 0) {
362 errorbox(ctr[TR_NO_DISK_SELECTED]);
363
364 } else {
365 selected_disks = hw_select_disks(disks, disk_selection);
366 }
367 }
368 }
369
370 num_selected_disks = hw_count_disks(selected_disks);
371
372 if (num_selected_disks == 1) {
373 snprintf(message, sizeof(message), ctr[TR_DISK_SETUP_DESC], (*selected_disks)->description);
374 rc = newtWinOkCancel(ctr[TR_DISK_SETUP], message, 50, 10,
375 ctr[TR_DELETE_ALL_DATA], ctr[TR_CANCEL]);
376
377 if (rc == 0)
56b548f1 378 break;
d7dd283b
MT
379
380 } else if (num_selected_disks == 2) {
381 snprintf(message, sizeof(message), ctr[TR_RAID_SETUP_DESC],
382 (*selected_disks)->description, (*selected_disks + 1)->description);
383 rc = newtWinOkCancel(ctr[TR_RAID_SETUP], message, 50, 10,
384 ctr[TR_DELETE_ALL_DATA], ctr[TR_CANCEL]);
385
386 if (rc == 0) {
387 part_type = HW_PART_TYPE_RAID1;
388
ee78a5ef 389 break;
d7dd283b
MT
390 }
391
392 // Currently not supported
393 } else {
394 errorbox(ctr[TR_DISK_CONFIGURATION_NOT_SUPPORTED]);
aee3027d 395 }
ee78a5ef 396
d7dd283b
MT
397 if (selected_disks) {
398 hw_free_disks(selected_disks);
399 selected_disks = NULL;
400 }
212cab4f 401 }
212cab4f 402
d7dd283b 403 hw_free_disks(disks);
72d80898 404
d7dd283b 405 struct hw_destination* destination = hw_make_destination(part_type, selected_disks);
5057b611 406
25fcce25
MT
407 if (!destination) {
408 errorbox(ctr[TR_DISK_TOO_SMALL]);
cd8dd8dd 409 goto EXIT;
25fcce25 410 }
cd8dd8dd 411
25fcce25 412 fprintf(flog, "Destination drive: %s\n", destination->path);
48d6a112
MT
413 fprintf(flog, " bootldr: %s (%lluMB)\n", destination->part_bootldr, BYTES2MB(destination->size_bootldr));
414 fprintf(flog, " boot : %s (%lluMB)\n", destination->part_boot, BYTES2MB(destination->size_boot));
415 fprintf(flog, " swap : %s (%lluMB)\n", destination->part_swap, BYTES2MB(destination->size_swap));
416 fprintf(flog, " root : %s (%lluMB)\n", destination->part_root, BYTES2MB(destination->size_root));
417 fprintf(flog, " data : %s (%lluMB)\n", destination->part_data, BYTES2MB(destination->size_data));
72d80898 418
25fcce25
MT
419 // Warn the user if there is not enough space to create a swap partition
420 if (!unattended && !*destination->part_swap) {
421 rc = newtWinChoice(title, ctr[TR_OK], ctr[TR_CANCEL], ctr[TR_CONTINUE_NO_SWAP]);
4f26ff7f 422
25fcce25
MT
423 if (rc != 1)
424 goto EXIT;
72d80898 425 }
9a3d3d95 426
25fcce25
MT
427 // Filesystem selection
428 if (!unattended) {
429 struct filesystems {
430 int fstype;
431 const char* description;
432 } filesystems[] = {
433 { HW_FS_EXT4, ctr[TR_EXT4FS] },
434 { HW_FS_EXT4_WO_JOURNAL, ctr[TR_EXT4FS_WO_JOURNAL] },
70a44b52 435 { HW_FS_XFS, ctr[TR_XFS] },
25fcce25
MT
436 { HW_FS_REISERFS, ctr[TR_REISERFS] },
437 { 0, NULL },
438 };
439 unsigned int num_filesystems = sizeof(filesystems) / sizeof(*filesystems);
440
441 char* fs_names[num_filesystems];
442 int fs_choice = 0;
443 for (unsigned int i = 0; i < num_filesystems; i++) {
444 if (HW_FS_DEFAULT == filesystems[i].fstype)
445 fs_choice = i;
446
447 fs_names[i] = filesystems[i].description;
448 }
72d80898 449
25fcce25
MT
450 rc = newtWinMenu(ctr[TR_CHOOSE_FILESYSTEM], ctr[TR_CHOOSE_FILESYSTEM],
451 50, 5, 5, 6, fs_names, &fs_choice, ctr[TR_OK], ctr[TR_CANCEL], NULL);
452
453 if (rc == 0)
454 destination->filesystem = filesystems[fs_choice].fstype;
72d80898 455
25fcce25 456 else
72d80898 457 goto EXIT;
72d80898
MT
458 }
459
4a0d9bef
MT
460 // Setting up RAID if needed.
461 if (destination->is_raid) {
462 statuswindow(60, 4, title, ctr[TR_BUILDING_RAID]);
463
464 rc = hw_setup_raid(destination);
465 if (rc) {
466 errorbox(ctr[TR_UNABLE_TO_BUILD_RAID]);
467 goto EXIT;
468 }
469
470 newtPopWindow();
471 }
472
25fcce25
MT
473 // Execute the partitioning...
474 statuswindow(60, 4, title, ctr[TR_PARTITIONING_DISK]);
72d80898 475
25fcce25
MT
476 rc = hw_create_partitions(destination);
477 if (rc) {
478 errorbox(ctr[TR_UNABLE_TO_PARTITION]);
72d80898 479 goto EXIT;
9607771a 480 }
72d80898 481
25fcce25 482 newtPopWindow();
72d80898 483
25fcce25
MT
484 // Execute the formatting...
485 statuswindow(60, 4, title, ctr[TR_CREATING_FILESYSTEMS]);
b8e2d108 486
25fcce25
MT
487 rc = hw_create_filesystems(destination);
488 if (rc) {
489 errorbox(ctr[TR_UNABLE_TO_CREATE_FILESYSTEMS]);
72d80898
MT
490 goto EXIT;
491 }
25fcce25
MT
492
493 rc = hw_mount_filesystems(destination, DESTINATION_MOUNT_PATH);
494 if (rc) {
495 errorbox(ctr[TR_UNABLE_TO_MOUNT_FILESYSTEMS]);
72d80898 496 goto EXIT;
9607771a 497 }
c78a77eb 498
25fcce25
MT
499 newtPopWindow();
500
501 // Extract files...
03d956be 502 snprintf(commandstring, STRING_SIZE,
23ed79cb 503 "/bin/tar -C /harddisk -xvf /cdrom/" SNAME "-" VERSION ".tlz --lzma 2>/dev/null");
d6aaa55d 504
edd536b6
MT
505 if (runcommandwithprogress(60, 4, title, commandstring, INST_FILECOUNT,
506 ctr[TR_INSTALLING_FILES]))
d6aaa55d
MT
507 {
508 errorbox(ctr[TR_UNABLE_TO_INSTALL_FILES]);
509 goto EXIT;
510 }
7f69d8a4
MT
511
512 // Write fstab
513 rc = hw_write_fstab(destination);
514 if (rc) {
515 fprintf(flog, "Could not write /etc/fstab\n");
516 goto EXIT;
517 }
518
406f019f
MT
519 /* Save language und local settings */
520 write_lang_configs(shortlangname);
d6aaa55d 521
330345c2 522 /* Build cache lang file */
6cf9e770 523 snprintf(commandstring, STRING_SIZE, "/usr/sbin/chroot /harddisk /usr/bin/perl -e \"require '" CONFIG_ROOT "/lang.pl'; &Lang::BuildCacheLang\"");
330345c2
MT
524 if (runcommandwithstatus(commandstring, ctr[TR_INSTALLING_LANG_CACHE]))
525 {
526 errorbox(ctr[TR_UNABLE_TO_INSTALL_LANG_CACHE]);
527 goto EXIT;
528 }
529
f5007e9c
MT
530 // Installing bootloader...
531 statuswindow(60, 4, title, ctr[TR_INSTALLING_GRUB]);
423400cf 532
f5007e9c
MT
533 rc = hw_install_bootloader(destination);
534 if (rc) {
edd536b6
MT
535 errorbox(ctr[TR_UNABLE_TO_INSTALL_GRUB]);
536 goto EXIT;
537 }
5faa66cf 538
f5007e9c
MT
539 newtPopWindow();
540
5faa66cf
AF
541 /* Serial console ? */
542 if (serialconsole) {
543 /* grub */
544 replace("/harddisk/boot/grub/grub.conf", "splashimage", "#splashimage");
545 replace("/harddisk/boot/grub/grub.conf", "#serial", "serial");
546 replace("/harddisk/boot/grub/grub.conf", "#terminal", "terminal");
1445c9e0 547 replace("/harddisk/boot/grub/grub.conf", " panic=10 ", " console=ttyS0,115200n8 panic=10 ");
5faa66cf
AF
548
549 /*inittab*/
550 replace("/harddisk/etc/inittab", "1:2345:respawn:", "#1:2345:respawn:");
551 replace("/harddisk/etc/inittab", "2:2345:respawn:", "#2:2345:respawn:");
552 replace("/harddisk/etc/inittab", "3:2345:respawn:", "#3:2345:respawn:");
553 replace("/harddisk/etc/inittab", "4:2345:respawn:", "#4:2345:respawn:");
554 replace("/harddisk/etc/inittab", "5:2345:respawn:", "#5:2345:respawn:");
555 replace("/harddisk/etc/inittab", "6:2345:respawn:", "#6:2345:respawn:");
556 replace("/harddisk/etc/inittab", "#7:2345:respawn:", "7:2345:respawn:");
557 }
558
dfa59dbd
AF
559 /* Set marker that the user has already accepted the gpl */
560 mysystem("/usr/bin/touch /harddisk/var/ipfire/main/gpl_accepted");
561
c25a0343 562 /* Copy restore file from cdrom */
7062cecd 563 if (unattended && (strlen(restore_file) > 0)) {
c25a0343 564 fprintf(flog, "unattended: Copy restore file\n");
dca095e1 565 snprintf(commandstring, STRING_SIZE,
c25a0343 566 "cp /cdrom/%s /harddisk/var/ipfire/backup", restore_file);
dca095e1 567 mysystem(commandstring);
c25a0343 568 }
2c9c458c
MT
569
570 // Umount source drive and eject
571 hw_umount(SOURCE_MOUNT_PATH);
572
573 snprintf(commandstring, STRING_SIZE, "/usr/bin/eject %s", sourcedrive);
3ef6c343 574 mysystem(commandstring);
22b9e405 575
73d9a908
MT
576 if (!unattended) {
577 sprintf(message, ctr[TR_CONGRATULATIONS_LONG],
3ad8835c 578 NAME, SNAME, NAME);
fac85ccd 579 newtWinMessage(ctr[TR_CONGRATULATIONS], ctr[TR_PRESS_OK_TO_REBOOT], message);
73d9a908 580 }
cd8dd8dd 581
22b9e405 582 allok = 1;
edd536b6 583
d6aaa55d 584EXIT:
10bc6f06 585 fprintf(flog, "Install program ended.\n");
d6aaa55d 586
10bc6f06 587 if (!(allok))
d6aaa55d 588 newtWinMessage(title, ctr[TR_OK], ctr[TR_PRESS_OK_TO_REBOOT]);
d6aaa55d 589
25fcce25 590 if (allok) {
ee78a5ef
MT
591 fflush(flog);
592 fclose(flog);
3a1019f6
MT
593 }
594
595 newtFinished();
596
f0fa1795
MT
597 // Free resources
598 free(sourcedrive);
25fcce25
MT
599
600 if (destination) {
601 hw_umount_filesystems(destination, DESTINATION_MOUNT_PATH);
602 free(destination);
603 }
d7dd283b 604
4a0d9bef
MT
605 hw_stop_all_raid_arrays();
606
d7dd283b
MT
607 if (selected_disks)
608 hw_free_disks(selected_disks);
609
610 hw_free(hw);
f0fa1795 611
25fcce25
MT
612 fcloseall();
613
f0a61a0a
MT
614 if (allok == 1)
615 return 0;
25fcce25 616
f0a61a0a 617 return 1;
d6aaa55d 618}