Commit f6df6240 authored by Ad Schellevis's avatar Ad Schellevis

cleanup halt

parent 35537e5e
......@@ -456,7 +456,7 @@ $priv_list['page-diagnostics-haltsystem'] = array();
$priv_list['page-diagnostics-haltsystem']['name'] = gettext("WebCfg - Diagnostics: Halt system page");
$priv_list['page-diagnostics-haltsystem']['descr'] = gettext("Allow access to the 'Diagnostics: Halt system' page.");
$priv_list['page-diagnostics-haltsystem']['match'] = array();
$priv_list['page-diagnostics-haltsystem']['match'][] = "halt.php*";
$priv_list['page-diagnostics-haltsystem']['match'][] = "diag_halt.php*";
$priv_list['page-requiredforjavascript'] = array();
$priv_list['page-requiredforjavascript']['name'] = gettext("WebCfg - Required for javascript page");
......
......@@ -73,7 +73,7 @@ page-getserviceproviders=getserviceproviders.php*
page-getstats=getstats.php*
page-diagnostics-interfacetraffic=graph.php*
page-diagnostics-cpuutilization=graph_cpu.php*
page-diagnostics-haltsystem=halt.php*
page-diagnostics-haltsystem=diag_halt.php*
page-requiredforjavascript=headjs.php*
page-xmlrpcinterfacestats=ifstats.php*
page-system-login/logout=index.php*
......
<?php
/*
Copyright (C) 2014 Deciso B.V.
Copyright (C) 2014-2015 Deciso B.V.
Copyright (C) 2004 Scott Ullrich
Copyright (C) 2003-2004 Manuel Kasper <mk@neon1.net>.
All rights reserved.
Redistribution and use in source and binary forms, with or without
......@@ -24,6 +26,46 @@
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
*/
require_once("guiconfig.inc");
require_once("functions.inc");
require_once("captiveportal.inc");
$pgtitle = array(gettext("Diagnostics"),gettext("Halt system"));
include('head.inc');
?>
<? include("halt.php"); ?>
<body>
<?php include("fbegin.inc"); ?>
<section class="page-content-main">
<div class="container-fluid col-xs-12 col-sm-10 col-md-9">
<div class="row">
<section class="col-xs-12">
<?php if ($_POST['Submit'] == gettext("Yes")):
print_info_box(gettext("The system is halting now. This may take one minute.")); ?>
<pre>
<?php system_halt(); ?>
</pre>
<?php else: ?>
<form action="<?=$_SERVER['REQUEST_URI'];?>" method="post">
<p><strong><?=gettext("Are you sure you want to halt the system?");?></strong></p>
<div class="btn-group">
<input type="submit" name="Submit" class="btn btn-primary" value="<?=gettext("Yes");?>" />
<a href="/" class="btn btn-default"><?=gettext("No");?></a>
</div>
<br /><br />
</form>
<?php endif; ?>
</section>
</div>
</div>
</section>
<?php include("foot.inc"); ?>
<?php
/*
Copyright (C) 2014-2015 Deciso B.V.
Copyright (C) 2004 Scott Ullrich
Copyright (C) 2003-2004 Manuel Kasper <mk@neon1.net>.
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
*/
require_once("guiconfig.inc");
require_once("functions.inc");
require_once("captiveportal.inc");
$pgtitle = array(gettext("Diagnostics"),gettext("Halt system"));
include('head.inc');
?>
<body>
<?php include("fbegin.inc"); ?>
<section class="page-content-main">
<div class="container-fluid col-xs-12 col-sm-10 col-md-9">
<div class="row">
<section class="col-xs-12">
<?php if ($_POST['Submit'] == gettext("Yes")):
print_info_box(gettext("The system is halting now. This may take one minute.")); ?>
<pre>
<?php system_halt(); ?>
</pre>
<?php else: ?>
<form action="<?=$_SERVER['REQUEST_URI'];?>" method="post">
<p><strong><?=gettext("Are you sure you want to halt the system?");?></strong></p>
<div class="btn-group">
<input type="submit" name="Submit" class="btn btn-primary" value="<?=gettext("Yes");?>" />
<a href="/" class="btn btn-default"><?=gettext("No");?></a>
</div>
<br /><br />
</form>
<?php endif; ?>
</section>
</div>
</div>
</section>
<?php include("foot.inc"); ?>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment