summaryrefslogtreecommitdiffstats
path: root/usr/local/www/fbegin.inc
diff options
context:
space:
mode:
authorPhil Davis <phil.davis@inf.org>2014-12-18 10:09:45 +0545
committerRenato Botelho <garga@FreeBSD.org>2014-12-23 09:04:25 -0200
commitdad58d7f282683d3a93966474ebbcc81f08960fa (patch)
treecc9aae42f981161724eafceab1fc11596d475707 /usr/local/www/fbegin.inc
parent4e220eeac37d806c1de3868917e7cb5c0b734a3b (diff)
downloadpfsense-dad58d7f282683d3a93966474ebbcc81f08960fa.zip
pfsense-dad58d7f282683d3a93966474ebbcc81f08960fa.tar.gz
Display better message when booting and awaiting package reinstall
Diffstat (limited to 'usr/local/www/fbegin.inc')
-rwxr-xr-xusr/local/www/fbegin.inc11
1 files changed, 8 insertions, 3 deletions
diff --git a/usr/local/www/fbegin.inc b/usr/local/www/fbegin.inc
index 531df4c..9379885 100755
--- a/usr/local/www/fbegin.inc
+++ b/usr/local/www/fbegin.inc
@@ -433,9 +433,14 @@ echo get_shortcut_log_link($shortcut_section, true);
<?php
/* if upgrade in progress, alert user */
-if(is_subsystem_dirty('packagelock')) {
- $pgtitle = array(gettext("System"),gettext("Package Manager"));
- print_info_box(gettext("Packages are currently being reinstalled in the background.<p>Do not make changes in the GUI until this is complete.") . "<p><img src='/themes/{$g['theme']}/images/icons/icon_fw-update.gif' alt='firmware update' />");
+if (is_subsystem_dirty('packagelock') || (file_exists('/conf/needs_package_sync') && platform_booting())) {
+ if (file_exists('/conf/needs_package_sync') && platform_booting()) {
+ $info_text = sprintf(gettext("%s is booting then packages will be reinstalled in the background.<p>Do not make changes in the GUI until this is complete."), $g['product_name']);
+ } else {
+ $pgtitle = array(gettext("System"),gettext("Package Manager"));
+ $info_text = gettext("Packages are currently being reinstalled in the background.<p>Do not make changes in the GUI until this is complete.");
+ }
+ print_info_box($info_text . "<p><img src='/themes/{$g['theme']}/images/icons/icon_fw-update.gif' alt='firmware update' />");
}
$pgtitle_output = true;
?>
OpenPOWER on IntegriCloud