1 Star 0 Fork 4

一方/daloradius汉化版

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
rep-stat-raid.php 2.67 KB
一键复制 编辑 原始数据 按行查看 历史
<?php
/*
*********************************************************************************************************
* daloRADIUS - RADIUS Web Platform
* Copyright (C) 2007 - Liran Tal <[email protected]> All Rights Reserved.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
*********************************************************************************************************
*
* Authors: Liran Tal <[email protected]>
*
*********************************************************************************************************
*/
include ("library/checklogin.php");
$operator = $_SESSION['operator_user'];
include('library/check_operator_perm.php');
include_once('library/config_read.php');
$log = "visited page: ";
$logQuery = "performed query on page: ";
include('include/config/logging.php');
?>
<?php
include_once ("library/tabber/tab-layout.php");
?>
<?php
include ("menu-reports-status.php");
?>
<div id="contentnorightbar">
<h2 id="Intro"><a href="#" onclick="javascript:toggleShowDiv('helpPage')">RAID Status
<h144>+</h144></a></h2>
<div id="helpPage" style="display:none;visibility:visible" >
<br/>
</div>
<br/>
<div class="tabber">
<?php
if (!file_exists('/proc/mdstat')):
?>
<font color='red'><b>Error</b> accessing RAID device information:</font>
<br/><br/>
<?php
else:
exec("cat /proc/mdstat | awk '/md/ {print $1}'", $mdstat);
?>
<font color='red'><b>Error</b> accessing RAID device information:</font>
<br/><br/>
<?php
foreach($mdstat as $mddevice):
?>
<div class="tabbertab" title="<?= $mddevice ?>">
<?php
$output = "";
$cmd = "sudo /sbin/mdadm --detail /dev/$mddevice";
exec($cmd, $output);
?>
<table class='summarySection'>
<?php
foreach($output as $line):
?>
<?php
list($var, $val) = split(":", $line);
?>
<tr>
<td class='summaryKey'> <?php echo $var ?> </td>
<td class='summaryValue'><span class='sleft'> <?php echo $val ?> </span> </td>
</tr>
<?php endforeach; ?>
</table>
</div>
<?php endforeach; ?>
<?php endif; ?>
</div>
</div>
<div id="footer">
<?php
include 'page-footer.php';
?>
</div>
</div>
</div>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/fanshown/daloradiusHanHuaBan.git
[email protected]:fanshown/daloradiusHanHuaBan.git
fanshown
daloradiusHanHuaBan
daloradius汉化版
master

搜索帮助