summaryrefslogtreecommitdiffstats
path: root/src/etc/rc.initial.halt
diff options
context:
space:
mode:
Diffstat (limited to 'src/etc/rc.initial.halt')
-rwxr-xr-xsrc/etc/rc.initial.halt17
1 files changed, 3 insertions, 14 deletions
diff --git a/src/etc/rc.initial.halt b/src/etc/rc.initial.halt
index 9ff189b..27377b5 100755
--- a/src/etc/rc.initial.halt
+++ b/src/etc/rc.initial.halt
@@ -1,6 +1,5 @@
#!/usr/local/bin/php-cgi -f
<?php
-/* $Id$ */
/*
rc.initial.halt
part of pfSense (www.pfSense.com)
@@ -38,21 +37,11 @@
$fp = fopen('php://stdin', 'r');
- echo <<<EOD
-
-{$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;
+ echo "\n" . sprintf(gettext("%s will shutdown and halt system. This may take a few minutes, depending on your hardware."), $g['product_name']) . "\n";
+ echo gettext("Do you want to proceed [y|n]?") . " ";
if (strcasecmp(chop(fgets($fp)), "y") == 0) {
-
- echo <<<EOD
-
-{$g['product_name']} will shutdown and halt system now.
-
-EOD;
-
+ echo "\n" . sprintf(gettext("%s will shutdown and halt system now."), $g['product_name']) . "\n";
system_halt();
}
OpenPOWER on IntegriCloud