summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xetc/rc.initial.halt2
-rwxr-xr-xetc/rc.initial.reboot2
-rwxr-xr-xusr/local/www/diag_defaults.php2
-rwxr-xr-xusr/local/www/halt.php2
-rwxr-xr-xusr/local/www/reboot.php4
5 files changed, 6 insertions, 6 deletions
diff --git a/etc/rc.initial.halt b/etc/rc.initial.halt
index 7a250d0..b26a49e 100755
--- a/etc/rc.initial.halt
+++ b/etc/rc.initial.halt
@@ -40,7 +40,7 @@
echo <<<EOD
-{$g['product_name']} will shutdown and halt system. This may take one minute.
+{$g['product_name']} will shutdown and halt system. This may take a few minutes, depending on your hardware.
Do you want to proceed [y|n]?
EOD;
diff --git a/etc/rc.initial.reboot b/etc/rc.initial.reboot
index ed26def..f3143e0 100755
--- a/etc/rc.initial.reboot
+++ b/etc/rc.initial.reboot
@@ -40,7 +40,7 @@
echo <<<EOD
-{$g['product_name']} will reboot. This may take one minute.
+{$g['product_name']} will reboot. This may take a few minutes, depending on your hardware.
Do you want to proceed [y|n]?
EOD;
diff --git a/usr/local/www/diag_defaults.php b/usr/local/www/diag_defaults.php
index 612e02a..86ea6f9 100755
--- a/usr/local/www/diag_defaults.php
+++ b/usr/local/www/diag_defaults.php
@@ -48,7 +48,7 @@ if ($_POST) {
if ($_POST['Submit'] != " No ") {
reset_factory_defaults();
system_reboot();
- $rebootmsg = gettext("The system has been reset to factory defaults and is now rebooting. This may take one minute.");
+ $rebootmsg = gettext("The system has been reset to factory defaults and is now rebooting. This may take a few minutes, depending on your hardware.");
} else {
header("Location: index.php");
exit;
diff --git a/usr/local/www/halt.php b/usr/local/www/halt.php
index 1bfda93..ae69291 100755
--- a/usr/local/www/halt.php
+++ b/usr/local/www/halt.php
@@ -49,7 +49,7 @@ require("captiveportal.inc");
if ($_POST) {
if ($_POST['Submit'] != " No ") {
system_halt();
- $rebootmsg = gettext("The system is halting now. This may take one minute.");
+ $rebootmsg = gettext("The system is halting now. This may take a few minutes, depending on your hardware.");
} else {
header("Location: index.php");
exit;
diff --git a/usr/local/www/reboot.php b/usr/local/www/reboot.php
index 07faa19..3f7eeda 100755
--- a/usr/local/www/reboot.php
+++ b/usr/local/www/reboot.php
@@ -42,7 +42,7 @@ require("captiveportal.inc");
if ($_POST) {
if ($_POST['Submit'] == gettext(" Yes ")) {
- $rebootmsg = gettext("The system is rebooting now. This may take one minute.");
+ $rebootmsg = gettext("The system is rebooting now. This may take a few minutes, depending on your hardware.");
} else {
Header("Location: /");
}
@@ -73,7 +73,7 @@ if ($_POST) {
if ($_POST['Submit'] == $reply) {
echo "<meta http-equiv=\"refresh\" content=\"70;url=/\">";
system_reboot();
- $rebootmsg = gettext("The system is rebooting now. This may take one minute.");
+ $rebootmsg = gettext("The system is rebooting now. This may take a few minutes, depending on your hardware.");
} else {
exit;
}
OpenPOWER on IntegriCloud