1 /* SmoothWall install program.
3 * This program is distributed under the terms of the GNU General Public
4 * Licence. See the file COPYING for details.
6 * (c) Lawrence Manning, 2001
7 * Contains main entry point, and misc functions.6
14 #include <libsmooth.h>
18 #include <sys/mount.h>
24 #define _(x) dgettext("installer", x)
26 #define INST_FILECOUNT 24800
27 #define LICENSE_FILE "/cdrom/COPYING"
28 #define SOURCE_TEMPFILE "/tmp/downloads/image.iso"
30 extern char url
[STRING_SIZE
];
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
) {
36 const int list_height
= 4;
38 char cbstates
[num_entries
];
40 for (unsigned int i
= 0; i
< num_entries
; i
++) {
41 cbstates
[i
] = states
[i
] ? '*' : ' ';
44 newtCenteredWindow(width
, height
, title
);
46 newtComponent textbox
= newtTextbox(1, 1, width
- 2, height
- 6 - list_height
,
48 newtTextboxSetText(textbox
, message
);
50 int top
= newtTextboxGetNumLines(textbox
) + 2;
52 newtComponent form
= newtForm(NULL
, NULL
, 0);
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
);
60 newtFormAddComponent(form
, sb
);
63 newtComponent subform
= newtForm(sb
, NULL
, 0);
64 newtFormSetBackground(subform
, NEWT_COLORSET_CHECKBOX
);
66 newtFormSetHeight(subform
, list_height
);
67 newtFormSetWidth(subform
, width
- 10);
69 for (unsigned int i
= 0; i
< num_entries
; i
++) {
70 newtComponent cb
= newtCheckbox(4, top
+ i
, entries
[i
], cbstates
[i
],
73 newtFormAddComponent(subform
, cb
);
76 newtFormAddComponents(form
, textbox
, subform
, NULL
);
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
);
82 newtComponent answer
= newtRunForm(form
);
84 if ((answer
== NULL
) || (answer
== btn_cancel
)) {
89 for (unsigned int i
= 0; i
< num_entries
; i
++) {
90 states
[i
] = (cbstates
[i
] != ' ');
97 newtFormDestroy(form
);
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
) {
107 unsigned int btn_width_ok
= strlen(btn_txt_ok
);
108 unsigned int btn_width_cancel
= strlen(btn_txt_cancel
);
110 // Maybe make the box wider to fix both buttons inside
111 unsigned int min_width
= btn_width_ok
+ btn_width_cancel
+ 5;
112 if (width
< min_width
)
115 unsigned int btn_pos_ok
= (width
/ 3) - (btn_width_ok
/ 2) - 1;
116 unsigned int btn_pos_cancel
= (width
* 2 / 3) - (btn_width_cancel
/ 2) - 1;
118 // Move buttons a bit if they overlap
119 while ((btn_pos_ok
+ btn_width_ok
+ 5) > btn_pos_cancel
) {
120 // Move the cancel button to the right if there is enough space left
121 if ((btn_pos_cancel
+ btn_width_cancel
+ 2) < width
) {
126 // Move the OK button to the left if possible
127 if (btn_pos_ok
> 1) {
132 // If they still overlap, we cannot fix the situtation
133 // and break. Should actually never get here, because we
134 // adjust the width of the window earlier.
138 newtCenteredWindow(width
, height
, title
);
140 newtComponent form
= newtForm(NULL
, NULL
, 0);
142 newtComponent textbox
= newtTextbox(1, 1, width
- 2, height
- 6, NEWT_FLAG_WRAP
);
143 newtTextboxSetText(textbox
, message
);
144 newtFormAddComponent(form
, textbox
);
146 newtComponent btn_ok
= newtButton(btn_pos_ok
, height
- 4, btn_txt_ok
);
147 newtComponent btn_cancel
= newtButton(btn_pos_cancel
, height
- 4, btn_txt_cancel
);
149 newtFormAddComponents(form
, btn_ok
, btn_cancel
, NULL
);
151 newtComponent answer
= newtRunForm(form
);
153 if (answer
== btn_ok
) {
157 newtFormDestroy(form
);
163 static int newtLicenseBox(const char* title
, const char* text
, int width
, int height
) {
166 newtCenteredWindow(width
, height
, title
);
168 newtComponent form
= newtForm(NULL
, NULL
, 0);
170 newtComponent textbox
= newtTextbox(1, 1, width
- 2, height
- 7,
171 NEWT_FLAG_WRAP
|NEWT_FLAG_SCROLL
);
172 newtTextboxSetText(textbox
, text
);
173 newtFormAddComponent(form
, textbox
);
176 newtComponent checkbox
= newtCheckbox(3, height
- 3, _("I accept this license"),
179 newtComponent btn
= newtButton(width
- 15, height
- 4, _("OK"));
181 newtFormAddComponents(form
, checkbox
, btn
, NULL
);
183 newtComponent answer
= newtRunForm(form
);
184 if (answer
== btn
&& choice
== '*')
187 newtFormDestroy(form
);
193 int write_lang_configs(char* lang
) {
194 struct keyvalue
*kv
= initkeyvalues();
196 /* default stuff for main/settings. */
197 replacekeyvalue(kv
, "LANGUAGE", lang
);
198 replacekeyvalue(kv
, "HOSTNAME", DISTRO_SNAME
);
199 replacekeyvalue(kv
, "THEME", "ipfire");
200 writekeyvalues(kv
, "/harddisk" CONFIG_ROOT
"/main/settings");
206 static char* get_system_release() {
207 char system_release
[STRING_SIZE
] = "\0";
209 FILE* f
= fopen("/etc/system-release", "r");
211 fgets(system_release
, sizeof(system_release
), f
);
215 return strdup(system_release
);
218 static char* center_string(const char* str
, int width
) {
223 unsigned int str_len
= strlen(str
);
225 if (str_len
== width
) {
226 string
= strdup(str
);
228 } else if (str_len
> width
) {
229 string
= strdup(str
);
230 string
[width
- 1] = '\0';
233 unsigned int indent_length
= (width
- str_len
) / 2;
234 char indent
[indent_length
+ 1];
236 for (unsigned int i
= 0; i
< indent_length
; i
++) {
239 indent
[indent_length
] = '\0';
241 if (asprintf(&string
, "%s%s", indent
, str
) < 0)
248 #define DEFAULT_LANG "en.utf8"
254 } languages
[NUM_LANGS
+ 1] = {
255 { "fa.utf8", "فارسی (Persian)" },
256 { "da.utf8", "Dansk (Danish)" },
257 { "es.utf8", "Español (Spanish)" },
258 { "en.utf8", "English" },
259 { "fr.utf8", "Français (French)" },
260 { "hr.utf8", "Hrvatski (Croatian)" },
261 { "it.utf8", "Italiano (Italian)" },
262 { "de.utf8", "Deutsch (German)" },
263 { "nl.utf8", "Nederlands (Dutch)" },
264 { "pl.utf8", "Polski (Polish)" },
265 { "pt.utf8", "Portuguese (Brasil)" },
266 { "ru.utf8", "Русский (Russian)" },
267 { "tr.utf8", "Türkçe (Turkish)" },
271 static struct config
{
275 int require_networking
;
276 int perform_download
;
278 char download_url
[STRING_SIZE
];
279 char postinstall
[STRING_SIZE
];
285 .require_networking
= 0,
286 .perform_download
= 0,
288 .download_url
= DOWNLOAD_URL
,
290 .language
= DEFAULT_LANG
,
293 static void parse_command_line(struct config
* c
) {
294 char buffer
[STRING_SIZE
];
295 char cmdline
[STRING_SIZE
];
297 FILE* f
= fopen("/proc/cmdline", "r");
301 int r
= fread(&cmdline
, 1, sizeof(cmdline
) - 1, f
);
303 char* token
= strtok(cmdline
, " ");
306 strncpy(buffer
, token
, sizeof(buffer
));
308 char* key
= strsep(&val
, "=");
311 if ((strcmp(key
, "console") == 0) && (strncmp(val
, "ttyS", 4) == 0))
312 c
->serial_console
= 1;
315 else if (strcmp(key
, "novga") == 0)
318 // enable networking?
319 else if (strcmp(token
, "installer.net") == 0)
320 c
->require_networking
= 1;
323 else if (strcmp(token
, "installer.unattended") == 0)
327 else if (strcmp(token
, "installer.disable-swap") == 0)
331 else if (strcmp(key
, "installer.download-url") == 0) {
332 strncpy(c
->download_url
, val
, sizeof(c
->download_url
));
333 c
->perform_download
= 1;
335 // Require networking for the download
336 c
->require_networking
= 1;
338 // postinstall script
339 } else if (strcmp(key
, "installer.postinstall") == 0) {
340 strncpy(c
->postinstall
, val
, sizeof(c
->postinstall
));
342 // Require networking for the download
343 c
->require_networking
= 1;
346 token
= strtok(NULL
, " ");
353 int main(int argc
, char *argv
[]) {
354 struct hw
* hw
= hw_init();
355 const char* logfile
= NULL
;
357 // Read /etc/system-release
358 char* system_release
= get_system_release();
360 char discl_msg
[40000] = "Disclaimer\n";
362 char* sourcedrive
= NULL
;
364 char commandstring
[STRING_SIZE
];
366 char message
[STRING_SIZE
];
367 char title
[STRING_SIZE
];
371 setlocale(LC_ALL
, "");
372 sethostname(DISTRO_SNAME
, 10);
374 /* Log file/terminal stuff. */
379 if (!(flog
= fopen(logfile
, "w+")))
385 fprintf(flog
, "Install program started.\n");
387 fprintf(flog
, "EFI mode enabled\n");
392 // Determine the size of the screen
396 newtGetScreenSize(&screen_cols
, &screen_rows
);
399 char* roottext
= center_string(system_release
, screen_cols
);
401 newtDrawRootText(0, 0, roottext
);
403 snprintf(title
, sizeof(title
), "%s - %s", DISTRO_NAME
, DISTRO_SLOGAN
);
405 // Parse parameters from the kernel command line
406 parse_command_line(&config
);
408 if (config
.unattended
) {
409 splashWindow(title
, _("Warning: Unattended installation will start in 10 seconds..."), 10);
412 // Load common modules
413 mysystem(logfile
, "/sbin/modprobe vfat"); // USB key
414 hw_stop_all_raid_arrays(logfile
);
416 if (!config
.unattended
) {
417 // Language selection
418 char* langnames
[NUM_LANGS
+ 1];
420 for (unsigned int i
= 0; i
< NUM_LANGS
; i
++) {
421 if (strcmp(languages
[i
].code
, DEFAULT_LANG
) == 0)
424 langnames
[i
] = languages
[i
].name
;
426 langnames
[NUM_LANGS
] = NULL
;
428 rc
= newtWinMenu(_("Language selection"), _("Select the language you wish to use for the installation."),
429 50, 5, 5, 8, langnames
, &choice
, _("OK"), NULL
);
431 assert(choice
<= NUM_LANGS
);
433 fprintf(flog
, "Selected language: %s (%s)\n", languages
[choice
].name
, languages
[choice
].code
);
434 config
.language
= languages
[choice
].code
;
436 setlocale(LC_ALL
, config
.language
);
437 setenv("LANGUAGE", config
.language
, 1);
441 char* helpline
= NULL
;
442 if (config
.unattended
)
443 helpline
= center_string(_("Unattended mode"), screen_cols
);
445 helpline
= center_string(_("<Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen"), screen_cols
);
448 newtPushHelpLine(helpline
);
450 if (!config
.unattended
) {
451 snprintf(message
, sizeof(message
),
452 _("Welcome to the %s installation program.\n\n"
453 "Selecting Cancel on any of the following screens will reboot the computer."), DISTRO_NAME
);
454 newtWinMessage(title
, _("Start installation"), message
);
457 /* Search for a source drive that holds the right
458 * version of the image we are going to install. */
459 if (!config
.perform_download
) {
460 sourcedrive
= hw_find_source_medium(hw
);
461 fprintf(flog
, "Source drive: %s\n", sourcedrive
);
464 /* If we could not find a source drive, we will try
465 * downloading the install image */
467 config
.perform_download
= 1;
469 if (config
.perform_download
) {
470 if (!config
.unattended
) {
471 // Show the right message to the user
472 char reason
[STRING_SIZE
];
473 if (config
.perform_download
) {
474 snprintf(reason
, sizeof(reason
),
475 _("The installer will now try downloading the installation image."));
477 snprintf(reason
, sizeof(reason
),
478 _("No source drive could be found.\n\n"
479 "You can try downloading the required installation image."));
481 snprintf(message
, sizeof(message
), "%s %s", reason
,
482 _("Please make sure to connect your machine to a network and "
483 "the installer will try connect to acquire an IP address."));
485 rc
= newtWinOkCancel(title
, message
, 55, 12,
486 _("Download installation image"), _("Cancel"));
492 // Make sure that we enable networking before download
493 config
.require_networking
= 1;
496 // Try starting the networking if we require it
497 if (config
.require_networking
) {
499 statuswindow(60, 4, title
, _("Trying to start networking (DHCP)..."));
501 rc
= hw_start_networking(logfile
);
504 // Networking was successfully started
508 // An error happened, ask the user what to do
510 rc
= newtWinOkCancel(title
, _("Networking could not be started "
511 "but is required to go on with the installation.\n\n"
512 "Please connect your machine to a network with a "
513 "DHCP server and retry."), 50, 10, _("Retry"), _("Cancel"));
520 // Download the image if required
521 if (config
.perform_download
) {
522 fprintf(flog
, "Download URL: %s\n", config
.download_url
);
523 snprintf(commandstring
, sizeof(commandstring
), "/usr/bin/downloadsource.sh %s %s",
524 SOURCE_TEMPFILE
, config
.download_url
);
526 while (!sourcedrive
) {
527 rc
= runcommandwithstatus(commandstring
, title
, _("Downloading installation image..."), logfile
);
529 FILE* f
= fopen(SOURCE_TEMPFILE
, "r");
531 sourcedrive
= strdup(SOURCE_TEMPFILE
);
534 char reason
[STRING_SIZE
] = "-";
536 snprintf(reason
, sizeof(STRING_SIZE
), _("MD5 checksum mismatch"));
538 snprintf(message
, sizeof(message
),
539 _("The installation image could not be downloaded.\n Reason: %s\n\n%s"),
540 reason
, config
.download_url
);
542 rc
= newtWinOkCancel(title
, message
, 75, 12, _("Retry"), _("Cancel"));
552 int r
= hw_mount(sourcedrive
, SOURCE_MOUNT_PATH
, "iso9660", MS_RDONLY
);
554 snprintf(message
, sizeof(message
), _("Could not mount %s to %s:\n %s\n"),
555 sourcedrive
, SOURCE_MOUNT_PATH
, strerror(errno
));
560 if (!config
.unattended
) {
561 // Read the license file.
562 if (!(copying
= fopen(LICENSE_FILE
, "r"))) {
563 sprintf(discl_msg
, "Could not open license file: %s\n", LICENSE_FILE
);
564 fprintf(flog
, "%s", discl_msg
);
566 fread(discl_msg
, 1, 40000, copying
);
569 if (newtLicenseBox(_("License Agreement"), discl_msg
, 75, 20)) {
570 errorbox(_("License not accepted!"));
577 int part_type
= HW_PART_TYPE_NORMAL
;
579 // Scan for disks to install on.
580 struct hw_disk
** disks
= hw_find_disks(hw
, sourcedrive
);
582 struct hw_disk
** selected_disks
= NULL
;
583 unsigned int num_selected_disks
= 0;
585 // Check how many disks have been found and what
586 // we can do with them.
587 unsigned int num_disks
= hw_count_disks((const struct hw_disk
**)disks
);
590 // no harddisks found
591 if (num_disks
== 0) {
592 errorbox(_("No hard disk found."));
595 // exactly one disk has been found
596 // or if we are running in unattended mode, we will select
597 // the first disk and go with that one
598 } else if ((num_disks
== 1) || (config
.unattended
&& num_disks
>= 1)) {
599 selected_disks
= hw_select_first_disk((const struct hw_disk
**)disks
);
601 // more than one usable disk has been found and
602 // the user needs to choose what to do with them
604 const char* disk_names
[num_disks
];
605 int disk_selection
[num_disks
];
607 for (unsigned int i
= 0; i
< num_disks
; i
++) {
608 disk_names
[i
] = disks
[i
]->description
;
609 disk_selection
[i
] = 0;
612 while (!selected_disks
) {
613 rc
= newtChecklist(_("Disk Selection"),
614 _("Select the disk(s) you want to install IPFire on. "
615 "First those will be partitioned, and then the partitions will have a filesystem put on them.\n\n"
616 "ALL DATA ON THE DISK WILL BE DESTROYED."),
617 50, 20, num_disks
, disk_names
, disk_selection
);
623 // Nothing has been selected
624 } else if (rc
== 0) {
625 errorbox(_("No disk has been selected.\n\n"
626 "Please select one or more disks you want to install IPFire on."));
629 selected_disks
= hw_select_disks(disks
, disk_selection
);
634 // Don't print the auto-selected harddisk setup in
636 if (config
.unattended
)
639 num_selected_disks
= hw_count_disks((const struct hw_disk
**)selected_disks
);
641 if (num_selected_disks
== 1) {
642 snprintf(message
, sizeof(message
),
643 _("The installation program will now prepare the chosen harddisk:\n\n %s\n\n"
644 "Do you agree to continue?"), (*selected_disks
)->description
);
645 rc
= newtWinOkCancel(_("Disk Setup"), message
, 50, 10,
646 _("Delete all data"), _("Cancel"));
651 } else if (num_selected_disks
== 2) {
652 snprintf(message
, sizeof(message
),
653 _("The installation program will now set up a RAID configuration on the selected harddisks:\n\n %s\n %s\n\n"
654 "Do you agree to continue?"), selected_disks
[0]->description
, selected_disks
[1]->description
);
655 rc
= newtWinOkCancel(_("RAID Setup"), message
, 50, 14,
656 _("Delete all data"), _("Cancel"));
659 part_type
= HW_PART_TYPE_RAID1
;
664 // Currently not supported
666 errorbox(_("Your disk configuration is currently not supported."));
667 fprintf(flog
, "Num disks selected: %d\n", num_selected_disks
);
670 if (selected_disks
) {
671 hw_free_disks(selected_disks
);
672 selected_disks
= NULL
;
676 hw_free_disks(disks
);
678 struct hw_destination
* destination
= hw_make_destination(hw
, part_type
,
679 selected_disks
, config
.disable_swap
);
682 errorbox(_("Your harddisk is too small."));
686 fprintf(flog
, "Destination drive: %s\n", destination
->path
);
687 fprintf(flog
, " bootldr: %s (%lluMB)\n", destination
->part_bootldr
, BYTES2MB(destination
->size_bootldr
));
688 fprintf(flog
, " boot : %s (%lluMB)\n", destination
->part_boot
, BYTES2MB(destination
->size_boot
));
689 fprintf(flog
, " ESP : %s (%lluMB)\n", destination
->part_boot_efi
, BYTES2MB(destination
->size_boot_efi
));
690 fprintf(flog
, " swap : %s (%lluMB)\n", destination
->part_swap
, BYTES2MB(destination
->size_swap
));
691 fprintf(flog
, " root : %s (%lluMB)\n", destination
->part_root
, BYTES2MB(destination
->size_root
));
692 fprintf(flog
, "Memory : %lluMB\n", BYTES2MB(hw_memory()));
694 // Warn the user if there is not enough space to create a swap partition
695 if (!config
.unattended
) {
696 if (!config
.disable_swap
&& !*destination
->part_swap
) {
697 rc
= newtWinChoice(title
, _("OK"), _("Cancel"),
698 _("Your harddisk is very small, but you can continue without a swap partition."));
705 // Filesystem selection
706 if (!config
.unattended
) {
711 { HW_FS_EXT4
, _("ext4 Filesystem") },
712 { HW_FS_EXT4_WO_JOURNAL
, _("ext4 Filesystem without journal") },
713 { HW_FS_XFS
, _("XFS Filesystem") },
714 { HW_FS_REISERFS
, _("ReiserFS Filesystem") },
717 unsigned int num_filesystems
= sizeof(filesystems
) / sizeof(*filesystems
);
719 char* fs_names
[num_filesystems
];
721 for (unsigned int i
= 0; i
< num_filesystems
; i
++) {
722 if (HW_FS_DEFAULT
== filesystems
[i
].fstype
)
725 fs_names
[i
] = filesystems
[i
].description
;
728 rc
= newtWinMenu(_("Filesystem Selection"), _("Please choose your filesystem:"),
729 50, 5, 5, 6, fs_names
, &fs_choice
, _("OK"), _("Cancel"), NULL
);
734 destination
->filesystem
= filesystems
[fs_choice
].fstype
;
737 // Setting up RAID if needed.
738 if (destination
->is_raid
) {
739 statuswindow(60, 4, title
, _("Building RAID..."));
741 rc
= hw_setup_raid(destination
, logfile
);
743 errorbox(_("Unable to build the RAID."));
749 // We will have to destroy all RAID setups that may have
750 // been on the devices that we want to use now.
751 hw_destroy_raid_superblocks(destination
, logfile
);
754 // Execute the partitioning...
755 statuswindow(60, 4, title
, _("Partitioning disk..."));
757 rc
= hw_create_partitions(destination
, logfile
);
759 errorbox(_("Unable to partition the disk."));
765 // Execute the formatting...
766 statuswindow(60, 4, title
, _("Creating filesystems..."));
768 rc
= hw_create_filesystems(destination
, logfile
);
770 errorbox(_("Unable to create filesystems."));
774 rc
= hw_mount_filesystems(destination
, DESTINATION_MOUNT_PATH
);
776 errorbox(_("Unable to mount filesystems."));
783 snprintf(commandstring
, STRING_SIZE
,
784 "/bin/tar -C /harddisk -xvf /cdrom/distro.img --xz 2>/dev/null");
786 if (runcommandwithprogress(60, 4, title
, commandstring
, INST_FILECOUNT
,
787 _("Installing the system..."), logfile
)) {
788 errorbox(_("Unable to install the system."));
793 rc
= hw_write_fstab(destination
);
795 fprintf(flog
, "Could not write /etc/fstab\n");
799 /* Save language und local settings */
800 write_lang_configs(config
.language
);
802 /* Build cache lang file */
803 snprintf(commandstring
, STRING_SIZE
, "/usr/sbin/chroot /harddisk /usr/bin/perl -e \"require '" CONFIG_ROOT
"/lang.pl'; &Lang::BuildCacheLang\"");
804 if (runcommandwithstatus(commandstring
, title
, _("Installing the language cache..."), logfile
)) {
805 errorbox(_("Unable to install the language cache."));
809 // Installing bootloader...
810 statuswindow(60, 4, title
, _("Installing the bootloader..."));
812 /* Serial console ? */
813 if (config
.serial_console
) {
815 FILE* f
= fopen(DESTINATION_MOUNT_PATH
"/etc/default/grub", "a");
817 errorbox(_("Unable to open /etc/default/grub for writing."));
821 fprintf(f
, "GRUB_TERMINAL=\"serial\"\n");
822 fprintf(f
, "GRUB_SERIAL_COMMAND=\"serial --unit=0 --speed=%d\"\n", SERIAL_BAUDRATE
);
825 replace(DESTINATION_MOUNT_PATH
"/etc/default/grub", "panic=10", "panic=10 console=ttyS0,115200n8");
831 FILE* f
= fopen(DESTINATION_MOUNT_PATH
"/etc/default/grub", "a");
833 errorbox(_("Unable to open /etc/default/grub for writing."));
837 fprintf(f
, "GRUB_GFXMODE=\"none\"\n");
841 rc
= hw_install_bootloader(hw
, destination
, logfile
);
843 errorbox(_("Unable to install the bootloader."));
849 /* Set marker that the user has already accepted the GPL if the license has been shown
850 * in the installation process. In unatteded mode, the user will be presented the
851 * license when he or she logs on to the web user interface for the first time. */
852 if (!config
.unattended
)
853 mysystem(logfile
, "/usr/bin/touch /harddisk/var/ipfire/main/gpl_accepted");
855 /* Copy restore file from cdrom */
856 char* backup_file
= hw_find_backup_file(logfile
, SOURCE_MOUNT_PATH
);
859 if (!config
.unattended
) {
860 rc
= newtWinOkCancel(title
, _("A backup file has been found on the installation image.\n\n"
861 "Do you want to restore the backup?"), 50, 10, _("Yes"), _("No"));
865 rc
= hw_restore_backup(logfile
, backup_file
, DESTINATION_MOUNT_PATH
);
868 errorbox(_("An error occured when the backup file was restored."));
876 // Download and execute the postinstall script
877 if (*config
.postinstall
) {
878 snprintf(commandstring
, sizeof(commandstring
),
879 "/usr/bin/execute-postinstall.sh %s %s", DESTINATION_MOUNT_PATH
, config
.postinstall
);
881 if (runcommandwithstatus(commandstring
, title
, _("Running post-install script..."), logfile
)) {
882 errorbox(_("Post-install script failed."));
887 // Umount the destination drive
888 statuswindow(60, 4, title
, _("Umounting filesystems..."));
890 rc
= hw_umount_filesystems(destination
, DESTINATION_MOUNT_PATH
);
892 // Show an error message if filesystems could not be umounted properly
893 snprintf(message
, sizeof(message
),
894 _("Could not umount all filesystems successfully:\n\n %s"), strerror(errno
));
899 // Umount source drive and eject
900 hw_umount(SOURCE_MOUNT_PATH
);
902 // Free downloaded ISO image
903 if (strcmp(sourcedrive
, SOURCE_TEMPFILE
) == 0) {
904 rc
= unlink(sourcedrive
);
906 fprintf(flog
, "Could not free downloaded ISO image: %s\n", sourcedrive
);
908 // or eject real images
910 snprintf(commandstring
, STRING_SIZE
, "/usr/bin/eject %s", sourcedrive
);
911 mysystem(logfile
, commandstring
);
915 // Stop the RAID array if we are using RAID
916 if (destination
->is_raid
)
917 hw_stop_all_raid_arrays(logfile
);
919 // Show a short message that the installation went well and
920 // wait a moment so that all disk caches get flushed.
921 if (config
.unattended
) {
922 splashWindow(title
, _("Unattended installation has finished. The system will be shutting down in a moment..."), 5);
925 snprintf(message
, sizeof(message
), _(
926 "%s was successfully installed!\n\n"
927 "Please remove any installation mediums from this system and hit the reboot button. "
928 "Once the system has restarted you will be asked to setup networking and system passwords. "
929 "After that, you should point your web browser at https://%s:444 (or what ever you name "
930 "your %s) for the web configuration console."), DISTRO_NAME
, DISTRO_SNAME
, DISTRO_NAME
);
931 newtWinMessage(_("Congratulations!"), _("Reboot"), message
);
937 fprintf(flog
, "Install program ended.\n");
942 newtWinMessage(title
, _("OK"), _("Setup has failed. Press Ok to reboot."));
948 free(system_release
);
962 hw_stop_all_raid_arrays(logfile
);
965 hw_free_disks(selected_disks
);