mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-09 18:45:54 +02:00
mdadm: add cgi to display the md-state.
This commit is contained in:
@@ -69,3 +69,8 @@
|
||||
'title' => 'Atm-status',
|
||||
'enabled' => `find /sys/class/atm/*/device 2>/dev/null`,
|
||||
};
|
||||
$substatus->{'76.mdstat'} = {'caption' => 'Mdstat',
|
||||
'uri' => '/cgi-bin/mdstat.cgi',
|
||||
'title' => 'Mdstat',
|
||||
'enabled' => 1,
|
||||
};
|
||||
|
||||
@@ -1333,6 +1333,7 @@ srv/web/ipfire/cgi-bin/ipinfo.cgi
|
||||
srv/web/ipfire/cgi-bin/iptables.cgi
|
||||
srv/web/ipfire/cgi-bin/logs.cgi
|
||||
srv/web/ipfire/cgi-bin/mac.cgi
|
||||
#srv/web/ipfire/cgi-bin/mdstat.cgi
|
||||
srv/web/ipfire/cgi-bin/media.cgi
|
||||
srv/web/ipfire/cgi-bin/memory.cgi
|
||||
srv/web/ipfire/cgi-bin/modem.cgi
|
||||
|
||||
@@ -13,4 +13,5 @@ var/ipfire/langs/de.pl
|
||||
var/ipfire/langs/en.pl
|
||||
var/ipfire/langs/es.pl
|
||||
var/ipfire/langs/fr.pl
|
||||
var/ipfire/menu.d/20-status.menu
|
||||
usr/local/bin/scanhd
|
||||
|
||||
@@ -9,3 +9,4 @@ sbin/mdmon
|
||||
#usr/share/man/man8/mdadm.8
|
||||
#usr/share/man/man8/mdmon.8
|
||||
etc/rc.d/init.d/mdadm
|
||||
srv/web/ipfire/cgi-bin/mdstat.cgi
|
||||
|
||||
51
html/cgi-bin/mdstat.cgi
Normal file
51
html/cgi-bin/mdstat.cgi
Normal file
@@ -0,0 +1,51 @@
|
||||
#!/usr/bin/perl
|
||||
###############################################################################
|
||||
# #
|
||||
# IPFire.org - A linux based firewall #
|
||||
# Copyright (C) 2011 IPFire Team <info@ipfire.org> #
|
||||
# #
|
||||
# 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 3 of the License, or #
|
||||
# (at your option) any later version. #
|
||||
# #
|
||||
# This program is distributed in the hope that it will be useful, #
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
|
||||
# GNU General Public License for more details. #
|
||||
# #
|
||||
# You should have received a copy of the GNU General Public License #
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>. #
|
||||
# #
|
||||
###############################################################################
|
||||
|
||||
use strict;
|
||||
|
||||
# enable only the following on debugging purpose
|
||||
#use warnings;
|
||||
#use CGI::Carp 'fatalsToBrowser';
|
||||
|
||||
require '/var/ipfire/general-functions.pl';
|
||||
require "${General::swroot}/lang.pl";
|
||||
require "${General::swroot}/header.pl";
|
||||
|
||||
my %color = ();
|
||||
my %mainsettings = ();
|
||||
|
||||
&General::readhash("${General::swroot}/main/settings", \%mainsettings);
|
||||
&General::readhash("/srv/web/ipfire/html/themes/".$mainsettings{'THEME'}."/include/colors.txt", \%color);
|
||||
|
||||
&Header::showhttpheaders();
|
||||
&Header::openpage($Lang::tr{'status information'}, 1, '');
|
||||
&Header::openbigbox('100%', 'left');
|
||||
|
||||
&Header::openbox('100%', 'left',"MD Raid State");
|
||||
|
||||
print '<textarea rows="25" cols="80" readonly="true">';
|
||||
print `cat "/proc/mdstat"`;
|
||||
print '</textarea>';
|
||||
|
||||
&Header::closebox();
|
||||
|
||||
&Header::closebigbox();
|
||||
&Header::closepage();
|
||||
@@ -4,7 +4,7 @@ case "$1" in
|
||||
ide)
|
||||
/sbin/kudzu -qps -c HD | egrep "desc|device:" | awk -F': ' '{print $2}' | sed -e '/"$/a\\' -e "s/$/\;/g" | tr "\n" "XX" | sed -e "s/XX/\n/g" -e "s/\;X/\;/g" | grep '^"' -v > /var/ipfire/extrahd/scan
|
||||
if [ -e /dev/.mdadm ]; then
|
||||
echo 'md;"MDADM software-raid";' >> /var/ipfire/extrahd/scan
|
||||
echo 'md;"MD Software-Raid";' >> /var/ipfire/extrahd/scan
|
||||
fi
|
||||
if [ -e /dev/mmcblk0 ]; then
|
||||
echo 'mmcblk0;"MMC/SD Cardreader";' >> /var/ipfire/extrahd/scan
|
||||
|
||||
Reference in New Issue
Block a user