]> git.ipfire.org Git - ipfire-2.x.git/blob - src/installer/main.c
Merge branch 'master' of ssh://git.ipfire.org/pub/git/ipfire-2.x into install-raid
[ipfire-2.x.git] / src / installer / main.c
1 /* SmoothWall install program.
2 *
3 * This program is distributed under the terms of the GNU General Public
4 * Licence. See the file COPYING for details.
5 *
6 * (c) Lawrence Manning, 2001
7 * Contains main entry point, and misc functions.6
8 *
9 */
10
11 #include <assert.h>
12 #include <errno.h>
13 #include <stdio.h>
14 #include <stdlib.h>
15 #include <string.h>
16 #include <sys/mount.h>
17
18 #include "hw.h"
19 #include "install.h"
20
21 // Translation
22 #include <libintl.h>
23 #define _(x) dgettext("installer", x)
24
25 #define INST_FILECOUNT 21000
26 #define UNATTENDED_CONF "/cdrom/boot/unattended.conf"
27 #define LICENSE_FILE "/cdrom/COPYING"
28
29 extern char url[STRING_SIZE];
30
31 static int newtChecklist(const char* title, const char* message,
32 unsigned int width, unsigned int height, unsigned int num_entries,
33 const char** entries, int* states) {
34 int ret;
35 const int list_height = 4;
36
37 char cbstates[num_entries];
38
39 for (unsigned int i = 0; i < num_entries; i++) {
40 cbstates[i] = states[i] ? '*' : ' ';
41 }
42
43 newtCenteredWindow(width, height, title);
44
45 newtComponent textbox = newtTextbox(1, 1, width - 2, height - 6 - list_height,
46 NEWT_FLAG_WRAP);
47 newtTextboxSetText(textbox, message);
48
49 int top = newtTextboxGetNumLines(textbox) + 2;
50
51 newtComponent form = newtForm(NULL, NULL, 0);
52
53 newtComponent sb = NULL;
54 if (list_height < num_entries) {
55 sb = newtVerticalScrollbar(
56 width - 4, top + 1, list_height,
57 NEWT_COLORSET_CHECKBOX, NEWT_COLORSET_ACTCHECKBOX);
58
59 newtFormAddComponent(form, sb);
60 }
61
62 newtComponent subform = newtForm(sb, NULL, 0);
63 newtFormSetBackground(subform, NEWT_COLORSET_CHECKBOX);
64
65 newtFormSetHeight(subform, list_height);
66 newtFormSetWidth(subform, width - 10);
67
68 for (unsigned int i = 0; i < num_entries; i++) {
69 newtComponent cb = newtCheckbox(4, top + i, entries[i], cbstates[i],
70 NULL, &cbstates[i]);
71
72 newtFormAddComponent(subform, cb);
73 }
74
75 newtFormAddComponents(form, textbox, subform, NULL);
76
77 newtComponent btn_okay = newtButton((width - 18) / 3, height - 4, _("OK"));
78 newtComponent btn_cancel = newtButton((width - 18) / 3 * 2 + 9, height - 4, _("Cancel"));
79 newtFormAddComponents(form, btn_okay, btn_cancel, NULL);
80
81 newtComponent answer = newtRunForm(form);
82
83 if ((answer == NULL) || (answer == btn_cancel)) {
84 ret = -1;
85 } else {
86 ret = 0;
87
88 for (unsigned int i = 0; i < num_entries; i++) {
89 states[i] = (cbstates[i] != ' ');
90
91 if (states[i])
92 ret++;
93 }
94 }
95
96 newtFormDestroy(form);
97 newtPopWindow();
98
99 return ret;
100 }
101
102 static int newtWinOkCancel(const char* title, const char* message, int width, int height,
103 const char* btn_txt_ok, const char* btn_txt_cancel) {
104 int ret = 1;
105
106 newtCenteredWindow(width, height, title);
107
108 newtComponent form = newtForm(NULL, NULL, 0);
109
110 newtComponent textbox = newtTextbox(1, 1, width - 2, height - 6, NEWT_FLAG_WRAP);
111 newtTextboxSetText(textbox, message);
112 newtFormAddComponent(form, textbox);
113
114 unsigned int btn_width_ok = strlen(btn_txt_ok);
115 unsigned int btn_width_cancel = strlen(btn_txt_cancel);
116
117 newtComponent btn_ok = newtButton((width / 3) - (btn_width_ok / 2) - 2, height - 4, btn_txt_ok);
118 newtComponent btn_cancel = newtButton((width * 2 / 3) - (btn_width_cancel / 2) - 2, height - 4,
119 btn_txt_cancel);
120
121 newtFormAddComponents(form, btn_ok, btn_cancel, NULL);
122
123 newtComponent answer = newtRunForm(form);
124
125 if (answer == btn_ok) {
126 ret = 0;
127 }
128
129 newtFormDestroy(form);
130 newtPopWindow();
131
132 return ret;
133 }
134
135 static int newtLicenseBox(const char* title, const char* text, int width, int height) {
136 int ret = 1;
137
138 newtCenteredWindow(width, height, title);
139
140 newtComponent form = newtForm(NULL, NULL, 0);
141
142 newtComponent textbox = newtTextbox(1, 1, width - 2, height - 7,
143 NEWT_FLAG_WRAP|NEWT_FLAG_SCROLL);
144 newtTextboxSetText(textbox, text);
145 newtFormAddComponent(form, textbox);
146
147 char choice;
148 newtComponent checkbox = newtCheckbox(3, height - 3, _("I accept this license"),
149 ' ', " *", &choice);
150
151 newtComponent btn = newtButton(width - 15, height - 4, _("OK"));
152
153 newtFormAddComponents(form, checkbox, btn, NULL);
154
155 newtComponent answer = newtRunForm(form);
156 if (answer == btn && choice == '*')
157 ret = 0;
158
159 newtFormDestroy(form);
160 newtPopWindow();
161
162 return ret;
163 }
164
165 int write_lang_configs(const char *lang) {
166 struct keyvalue *kv = initkeyvalues();
167
168 /* default stuff for main/settings. */
169 replacekeyvalue(kv, "LANGUAGE", lang);
170 replacekeyvalue(kv, "HOSTNAME", SNAME);
171 replacekeyvalue(kv, "THEME", "ipfire");
172 writekeyvalues(kv, "/harddisk" CONFIG_ROOT "/main/settings");
173 freekeyvalues(kv);
174
175 return 1;
176 }
177
178 static char* get_system_release() {
179 char system_release[STRING_SIZE] = "\0";
180
181 FILE* f = fopen("/etc/system-release", "r");
182 if (f) {
183 fgets(system_release, sizeof(system_release), f);
184 fclose(f);
185 }
186
187 return strdup(system_release);
188 }
189
190 static char* center_string(const char* str, int width) {
191 unsigned int str_len = strlen(str);
192
193 unsigned int indent_length = (width - str_len) / 2;
194 char indent[indent_length + 1];
195
196 for (unsigned int i = 0; i < indent_length; i++) {
197 indent[i] = ' ';
198 }
199 indent[indent_length] = '\0';
200
201 char* string = NULL;
202 if (asprintf(&string, "%s%s", indent, str) < 0)
203 return NULL;
204
205 return string;
206 }
207
208 #define DEFAULT_LANG "English"
209 #define NUM_LANGS 8
210
211 static struct lang {
212 const char* code;
213 char* name;
214 } languages[NUM_LANGS + 1] = {
215 { "da.utf8", "Danish (Dansk)" },
216 { "nl_NL.utf8", "Dutch (Nederlands)" },
217 { "en_US.utf8", "English" },
218 { "fr_FR.utf8", "French (Français)" },
219 { "de_DE.utf8", "German (Deutsch)" },
220 { "pl_PL.utf8", "Polish (Polski)" },
221 { "pt_BR.utf8", "Portuguese (Brasil)" },
222 { "ru_RU.utf8", "Russian (Русский)" },
223 { "es_ES.utf8", "Spanish (Español)" },
224 { "tr_TR.utf8", "Turkish (Türkçe)" },
225 { NULL, NULL },
226 };
227
228 int main(int argc, char *argv[]) {
229 struct hw* hw = hw_init();
230 const char* logfile = NULL;
231
232 // Read /etc/system-release
233 char* system_release = get_system_release();
234
235 char discl_msg[40000] = "Disclaimer\n";
236
237 char* sourcedrive = NULL;
238 int rc = 0;
239 char commandstring[STRING_SIZE];
240 int choice;
241 char shortlangname[10];
242 char message[STRING_SIZE];
243 char title[STRING_SIZE];
244 int allok = 0;
245 FILE *handle, *cmdfile, *copying;
246 char line[STRING_SIZE];
247
248 int unattended = 0;
249 int serialconsole = 0;
250 struct keyvalue *unattendedkv = initkeyvalues();
251 char restore_file[STRING_SIZE] = "";
252
253 setlocale (LC_ALL, "");
254 sethostname( SNAME , 10);
255
256 /* Log file/terminal stuff. */
257 FILE* flog = NULL;
258 if (argc >= 2) {
259 logfile = argv[1];
260
261 if (!(flog = fopen(logfile, "w+")))
262 return 0;
263 } else {
264 return 0;
265 }
266
267 fprintf(flog, "Install program started.\n");
268
269 newtInit();
270 newtCls();
271
272 // Determine the size of the screen
273 int screen_cols = 0;
274 int screen_rows = 0;
275
276 newtGetScreenSize(&screen_cols, &screen_rows);
277
278 // Draw title
279 char* roottext = center_string(system_release, screen_cols);
280 newtDrawRootText(0, 0, roottext);
281
282 snprintf(title, sizeof(title), "%s - %s", NAME, SLOGAN);
283
284 if (! (cmdfile = fopen("/proc/cmdline", "r")))
285 {
286 fprintf(flog, "Couldn't open commandline: /proc/cmdline\n");
287 } else {
288 fgets(line, STRING_SIZE, cmdfile);
289
290 // check if we have to make an unattended install
291 if (strstr (line, "unattended") != NULL) {
292 unattended = 1;
293 runcommandwithstatus("/bin/sleep 10", title, "WARNING: Unattended installation will start in 10 seconds...", NULL);
294 }
295 // check if we have to patch for serial console
296 if (strstr (line, "console=ttyS0") != NULL) {
297 serialconsole = 1;
298 }
299 }
300
301 // Load common modules
302 mysystem(logfile, "/sbin/modprobe vfat"); // USB key
303 hw_stop_all_raid_arrays(logfile);
304
305 if (!unattended) {
306 // Language selection
307 char* langnames[NUM_LANGS + 1];
308
309 for (unsigned int i = 0; i < NUM_LANGS; i++) {
310 if (strcmp(languages[i].name, DEFAULT_LANG) == 0)
311 choice = i;
312
313 langnames[i] = languages[i].name;
314 }
315 langnames[NUM_LANGS] = NULL;
316
317 rc = newtWinMenu(_("Language selection"), _("Select the language you wish to use for the installation."),
318 50, 5, 5, 8, langnames, &choice, _("OK"), NULL);
319
320 assert(choice <= NUM_LANGS);
321
322 fprintf(flog, "Selected language: %s (%s)\n", languages[choice].name, languages[choice].code);
323
324 setenv("LANGUAGE", languages[choice].code, 1);
325 setlocale(LC_ALL, languages[choice].code);
326 }
327
328 char* helpline = center_string(_("<Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen"), screen_cols);
329 newtPushHelpLine(helpline);
330
331 if (!unattended) {
332 snprintf(message, sizeof(message),
333 _("Welcome to the %s installation program.\n\n"
334 "Selecting Cancel on any of the following screens will reboot the computer."), NAME);
335 newtWinMessage(title, _("Start installation"), message);
336 }
337
338 /* Search for a source drive that holds the right
339 * version of the image we are going to install. */
340 sourcedrive = hw_find_source_medium(hw);
341
342 fprintf(flog, "Source drive: %s\n", sourcedrive);
343 if (!sourcedrive) {
344 newtWinMessage(title, _("OK"), _("No local source media found. Starting download."));
345 runcommandwithstatus("/bin/downloadsource.sh", title, _("Downloading installation image ..."), logfile);
346 if ((handle = fopen("/tmp/source_device", "r")) == NULL) {
347 errorbox(_("Download error"));
348 goto EXIT;
349 }
350
351 fgets(sourcedrive, 5, handle);
352 fclose(handle);
353 }
354
355 assert(sourcedrive);
356
357 int r = hw_mount(sourcedrive, SOURCE_MOUNT_PATH, "iso9660", MS_RDONLY);
358 if (r) {
359 fprintf(flog, "Could not mount %s to %s\n", sourcedrive, SOURCE_MOUNT_PATH);
360 fprintf(flog, strerror(errno));
361 exit(1);
362 }
363
364 /* load unattended configuration */
365 if (unattended) {
366 fprintf(flog, "unattended: Reading unattended.conf\n");
367
368 (void) readkeyvalues(unattendedkv, UNATTENDED_CONF);
369 findkey(unattendedkv, "RESTORE_FILE", restore_file);
370 }
371
372 if (!unattended) {
373 // Read the license file.
374 if (!(copying = fopen(LICENSE_FILE, "r"))) {
375 sprintf(discl_msg, "Could not open license file: %s\n", LICENSE_FILE);
376 fprintf(flog, discl_msg);
377 } else {
378 fread(discl_msg, 1, 40000, copying);
379 fclose(copying);
380
381 if (newtLicenseBox(_("License Agreement"), discl_msg, 75, 20)) {
382 errorbox(_("License not accepted!"));
383
384 goto EXIT;
385 }
386 }
387 }
388
389 int part_type = HW_PART_TYPE_NORMAL;
390
391 // Scan for disks to install on.
392 struct hw_disk** disks = hw_find_disks(hw, sourcedrive);
393
394 struct hw_disk** selected_disks = NULL;
395 unsigned int num_selected_disks = 0;
396
397 // Check how many disks have been found and what
398 // we can do with them.
399 unsigned int num_disks = hw_count_disks(disks);
400
401 while (1) {
402 // no harddisks found
403 if (num_disks == 0) {
404 errorbox(_("No hard disk found."));
405 goto EXIT;
406
407 // exactly one disk has been found
408 } else if (num_disks == 1) {
409 selected_disks = hw_select_disks(disks, NULL);
410
411 // more than one usable disk has been found and
412 // the user needs to choose what to do with them
413 } else {
414 const char* disk_names[num_disks];
415 int disk_selection[num_disks];
416
417 for (unsigned int i = 0; i < num_disks; i++) {
418 disk_names[i] = &disks[i]->description;
419 disk_selection[i] = 0;
420 }
421
422 while (!selected_disks) {
423 rc = newtChecklist(_("Disk Selection"),
424 _("Select the disk(s) you want to install IPFire on. "
425 "First those will be partitioned, and then the partitions will have a filesystem put on them.\n\n"
426 "ALL DATA ON THE DISK WILL BE DESTROYED."),
427 50, 20, num_disks, disk_names, disk_selection);
428
429 // Error
430 if (rc < 0) {
431 goto EXIT;
432
433 // Nothing has been selected
434 } else if (rc == 0) {
435 errorbox(_("No disk has been selected.\n\n"
436 "Please select one or more disks you want to install IPFire on."));
437
438 } else {
439 selected_disks = hw_select_disks(disks, disk_selection);
440 }
441 }
442 }
443
444 num_selected_disks = hw_count_disks(selected_disks);
445
446 if (num_selected_disks == 1) {
447 snprintf(message, sizeof(message),
448 _("The installation program will now prepare the chosen harddisk:\n\n %s\n\n"
449 "Do you agree to continue?"), (*selected_disks)->description);
450 rc = newtWinOkCancel(_("Disk Setup"), message, 50, 10,
451 _("Delete all data"), _("Cancel"));
452
453 if (rc == 0)
454 break;
455
456 } else if (num_selected_disks == 2) {
457 snprintf(message, sizeof(message),
458 _("The installation program will now set up a RAID configuration on the selected harddisks:\n\n %s\n %s\n\n"
459 "Do you agree to continue?"), selected_disks[0]->description, selected_disks[1]->description);
460 rc = newtWinOkCancel(_("RAID Setup"), message, 50, 14,
461 _("Delete all data"), _("Cancel"));
462
463 if (rc == 0) {
464 part_type = HW_PART_TYPE_RAID1;
465
466 break;
467 }
468
469 // Currently not supported
470 } else {
471 errorbox(_("You disk configuration is currently not supported."));
472 fprintf(flog, "Num disks selected: %d\n", num_selected_disks);
473 }
474
475 if (selected_disks) {
476 hw_free_disks(selected_disks);
477 selected_disks = NULL;
478 }
479 }
480
481 hw_free_disks(disks);
482
483 struct hw_destination* destination = hw_make_destination(part_type, selected_disks);
484
485 if (!destination) {
486 errorbox(_("Your harddisk is too small."));
487 goto EXIT;
488 }
489
490 fprintf(flog, "Destination drive: %s\n", destination->path);
491 fprintf(flog, " bootldr: %s (%lluMB)\n", destination->part_bootldr, BYTES2MB(destination->size_bootldr));
492 fprintf(flog, " boot : %s (%lluMB)\n", destination->part_boot, BYTES2MB(destination->size_boot));
493 fprintf(flog, " swap : %s (%lluMB)\n", destination->part_swap, BYTES2MB(destination->size_swap));
494 fprintf(flog, " root : %s (%lluMB)\n", destination->part_root, BYTES2MB(destination->size_root));
495 fprintf(flog, " data : %s (%lluMB)\n", destination->part_data, BYTES2MB(destination->size_data));
496
497 // Warn the user if there is not enough space to create a swap partition
498 if (!unattended && !*destination->part_swap) {
499 rc = newtWinChoice(title, _("OK"), _("Cancel"),
500 _("Your harddisk is very small, but you can continue without a swap partition."));
501
502 if (rc != 1)
503 goto EXIT;
504 }
505
506 // Filesystem selection
507 if (!unattended) {
508 struct filesystems {
509 int fstype;
510 const char* description;
511 } filesystems[] = {
512 { HW_FS_EXT4, _("ext4 Filesystem") },
513 { HW_FS_EXT4_WO_JOURNAL, _("ext4 Filesystem without journal") },
514 { HW_FS_XFS, _("XFS Filesystem") },
515 { HW_FS_REISERFS, _("ReiserFS Filesystem") },
516 { 0, NULL },
517 };
518 unsigned int num_filesystems = sizeof(filesystems) / sizeof(*filesystems);
519
520 char* fs_names[num_filesystems];
521 int fs_choice = 0;
522 for (unsigned int i = 0; i < num_filesystems; i++) {
523 if (HW_FS_DEFAULT == filesystems[i].fstype)
524 fs_choice = i;
525
526 fs_names[i] = filesystems[i].description;
527 }
528
529 rc = newtWinMenu(_("Filesystem Selection"), _("Please choose your filesystem:"),
530 50, 5, 5, 6, fs_names, &fs_choice, _("OK"), _("Cancel"), NULL);
531
532 if (rc == 2)
533 goto EXIT;
534
535 destination->filesystem = filesystems[fs_choice].fstype;
536 }
537
538 // Setting up RAID if needed.
539 if (destination->is_raid) {
540 statuswindow(60, 4, title, _("Building RAID..."));
541
542 rc = hw_setup_raid(destination, logfile);
543 if (rc) {
544 errorbox(_("Unable to build the RAID."));
545 goto EXIT;
546 }
547
548 newtPopWindow();
549 } else {
550 // We will have to destroy all RAID setups that may have
551 // been on the devices that we want to use now.
552 hw_destroy_raid_superblocks(destination, logfile);
553 }
554
555 // Execute the partitioning...
556 statuswindow(60, 4, title, _("Partitioning disk..."));
557
558 rc = hw_create_partitions(destination, logfile);
559 if (rc) {
560 errorbox(_("Unable to partition the disk."));
561 goto EXIT;
562 }
563
564 newtPopWindow();
565
566 // Execute the formatting...
567 statuswindow(60, 4, title, _("Creating filesystems..."));
568
569 rc = hw_create_filesystems(destination, logfile);
570 if (rc) {
571 errorbox(_("Unable to create filesystems."));
572 goto EXIT;
573 }
574
575 rc = hw_mount_filesystems(destination, DESTINATION_MOUNT_PATH);
576 if (rc) {
577 errorbox(_("Unable to mount filesystems."));
578 goto EXIT;
579 }
580
581 newtPopWindow();
582
583 // Extract files...
584 snprintf(commandstring, STRING_SIZE,
585 "/bin/tar -C /harddisk -xvf /cdrom/distro.img --lzma 2>/dev/null");
586
587 if (runcommandwithprogress(60, 4, title, commandstring, INST_FILECOUNT,
588 _("Installing the system..."), logfile)) {
589 errorbox(_("Unable to install the system."));
590 goto EXIT;
591 }
592
593 // Write fstab
594 rc = hw_write_fstab(destination);
595 if (rc) {
596 fprintf(flog, "Could not write /etc/fstab\n");
597 goto EXIT;
598 }
599
600 /* Save language und local settings */
601 write_lang_configs(shortlangname);
602
603 /* Build cache lang file */
604 snprintf(commandstring, STRING_SIZE, "/usr/sbin/chroot /harddisk /usr/bin/perl -e \"require '" CONFIG_ROOT "/lang.pl'; &Lang::BuildCacheLang\"");
605 if (runcommandwithstatus(commandstring, title, _("Installing the language cache..."), logfile)) {
606 errorbox(_("Unable to install the language cache."));
607 goto EXIT;
608 }
609
610 // Installing bootloader...
611 statuswindow(60, 4, title, _("Installing the bootloader..."));
612
613 /* Serial console ? */
614 if (serialconsole) {
615 /* grub */
616 FILE* f = fopen(DESTINATION_MOUNT_PATH "/etc/default/grub", "a");
617 if (!f) {
618 errorbox(_("Unable to open /etc/default/grub for writing."));
619 goto EXIT;
620 }
621
622 fprintf(f, "GRUB_TERMINAL=\"serial console\"\n");
623 fprintf(f, "GRUB_SERIAL_COMMAND=\"serial --unit=0 --speed=%d\"\n", SERIAL_BAUDRATE);
624 fclose(f);
625
626 replace(DESTINATION_MOUNT_PATH "/etc/default/grub", "panic=10", "panic=10 console=ttyS0,115200n8");
627
628 /* inittab */
629 replace("/harddisk/etc/inittab", "1:2345:respawn:", "#1:2345:respawn:");
630 replace("/harddisk/etc/inittab", "2:2345:respawn:", "#2:2345:respawn:");
631 replace("/harddisk/etc/inittab", "3:2345:respawn:", "#3:2345:respawn:");
632 replace("/harddisk/etc/inittab", "4:2345:respawn:", "#4:2345:respawn:");
633 replace("/harddisk/etc/inittab", "5:2345:respawn:", "#5:2345:respawn:");
634 replace("/harddisk/etc/inittab", "6:2345:respawn:", "#6:2345:respawn:");
635 replace("/harddisk/etc/inittab", "#7:2345:respawn:", "7:2345:respawn:");
636 }
637
638 rc = hw_install_bootloader(destination, logfile);
639 if (rc) {
640 errorbox(_("Unable to install the bootloader."));
641 goto EXIT;
642 }
643
644 newtPopWindow();
645
646 /* Set marker that the user has already accepted the gpl */
647 mysystem(logfile, "/usr/bin/touch /harddisk/var/ipfire/main/gpl_accepted");
648
649 /* Copy restore file from cdrom */
650 if (unattended && (strlen(restore_file) > 0)) {
651 fprintf(flog, "unattended: Copy restore file\n");
652 snprintf(commandstring, STRING_SIZE,
653 "cp /cdrom/%s /harddisk/var/ipfire/backup", restore_file);
654 mysystem(logfile, commandstring);
655 }
656
657 // Umount the destination drive
658 hw_umount_filesystems(destination, DESTINATION_MOUNT_PATH);
659
660 // Stop the RAID array if we are using RAID
661 if (destination->is_raid)
662 hw_stop_all_raid_arrays(logfile);
663
664 // Umount source drive and eject
665 hw_umount(SOURCE_MOUNT_PATH);
666
667 snprintf(commandstring, STRING_SIZE, "/usr/bin/eject %s", sourcedrive);
668 mysystem(logfile, commandstring);
669
670 if (!unattended) {
671 snprintf(message, sizeof(message), _(
672 "%s was successfully installed!\n\n"
673 "Please remove any installation mediums from this system and hit the reboot button. "
674 "Once the system has restarted you will be asked to setup networking and system passwords. "
675 "After that, you should point your web browser at https://%s:444 (or what ever you name "
676 "your %s) for the web configuration console."), NAME, SNAME, NAME);
677 newtWinMessage(_("Congratulations!"), _("Reboot"), message);
678 }
679
680 allok = 1;
681
682 EXIT:
683 fprintf(flog, "Install program ended.\n");
684 fflush(flog);
685 fclose(flog);
686
687 if (!allok)
688 newtWinMessage(title, _("OK"), _("Setup has failed. Press Ok to reboot."));
689
690 newtFinished();
691
692 // Free resources
693 free(system_release);
694 free(roottext);
695 free(helpline);
696
697 free(sourcedrive);
698 free(destination);
699
700 hw_stop_all_raid_arrays(logfile);
701
702 if (selected_disks)
703 hw_free_disks(selected_disks);
704
705 hw_free(hw);
706
707 fcloseall();
708
709 if (allok == 1)
710 return 0;
711
712 return 1;
713 }