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