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