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