]> git.ipfire.org Git - ipfire-2.x.git/blame - html/cgi-bin/system.cgi
Add new useragents to updater
[ipfire-2.x.git] / html / cgi-bin / system.cgi
CommitLineData
72fe12a9 1#!/usr/bin/perl
70df8302
MT
2###############################################################################
3# #
4# IPFire.org - A linux based firewall #
5# Copyright (C) 2007 Michael Tremer & Christian Schmidt #
6# #
7# This program is free software: you can redistribute it and/or modify #
8# it under the terms of the GNU General Public License as published by #
9# the Free Software Foundation, either version 3 of the License, or #
10# (at your option) any later version. #
11# #
12# This program is distributed in the hope that it will be useful, #
13# but WITHOUT ANY WARRANTY; without even the implied warranty of #
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
15# GNU General Public License for more details. #
16# #
17# You should have received a copy of the GNU General Public License #
18# along with this program. If not, see <http://www.gnu.org/licenses/>. #
19# #
20###############################################################################
72fe12a9
MT
21
22use strict;
23
24# enable only the following on debugging purpose
cb5e9c6c
CS
25#use warnings;
26#use CGI::Carp 'fatalsToBrowser';
72fe12a9
MT
27
28require '/var/ipfire/general-functions.pl';
29require "${General::swroot}/lang.pl";
30require "${General::swroot}/header.pl";
350b52c5 31require "${General::swroot}/graphs.pl";
72fe12a9 32
f2fdd0c1
CS
33my %color = ();
34my %mainsettings = ();
35&General::readhash("${General::swroot}/main/settings", \%mainsettings);
36&General::readhash("/srv/web/ipfire/html/themes/".$mainsettings{'THEME'}."/include/colors.txt", \%color);
37
72fe12a9 38my %cgiparams=();
72fe12a9 39
350b52c5
CS
40# Generate Graphs from rrd Data
41&Graphs::updatecpugraph ("day");
0950b1ec 42&Graphs::updatecpufreqgraph ("day");
350b52c5 43&Graphs::updateloadgraph ("day");
72fe12a9 44
350b52c5 45&Header::showhttpheaders();
72fe12a9 46&Header::getcgihash(\%cgiparams);
72fe12a9 47&Header::openpage($Lang::tr{'status information'}, 1, '');
72fe12a9
MT
48&Header::openbigbox('100%', 'left');
49
50&Header::openbox('100%', 'center', "CPU $Lang::tr{'graph'}");
51if (-e "$Header::graphdir/cpu-day.png") {
52 my $ftime = localtime((stat("$Header::graphdir/cpu-day.png"))[9]);
53 print "<center><b>$Lang::tr{'the statistics were last updated at'}: $ftime</b></center><br />\n";
54 print "<a href='/cgi-bin/graphs.cgi?graph=cpu'>";
55 print "<img alt='' src='/graphs/cpu-day.png' border='0' />";
56 print "</a>";
57} else {
58 print $Lang::tr{'no information available'};
59}
60print "<br />\n";
61&Header::closebox();
62
0950b1ec
AF
63if (-e "$Header::graphdir/cpufreq-day.png") {
64 &Header::openbox('100%', 'center', "CPU Frequency $Lang::tr{'graph'}");
65 my $ftime = localtime((stat("$Header::graphdir/cpufreq-day.png"))[9]);
66 print "<center><b>$Lang::tr{'the statistics were last updated at'}: $ftime</b></center><br />\n";
67 print "<a href='/cgi-bin/graphs.cgi?graph=cpufreq'>";
68 print "<img alt='' src='/graphs/cpufreq-day.png' border='0' />";
69 print "</a>";
70 print "<br />\n";
71 &Header::closebox();
72}
73
72fe12a9
MT
74&Header::openbox('100%', 'center', "Load $Lang::tr{'graph'}");
75if (-e "$Header::graphdir/load-day.png") {
76 my $ftime = localtime((stat("$Header::graphdir/load-day.png"))[9]);
77 print "<center><b>$Lang::tr{'the statistics were last updated at'}: $ftime</b></center><br />\n";
78 print "<a href='/cgi-bin/graphs.cgi?graph=load'>";
79 print "<img alt='' src='/graphs/load-day.png' border='0' />";
80 print "</a>";
81} else {
82 print $Lang::tr{'no information available'};
83}
84print "<br />\n";
72fe12a9 85&Header::closebox();
72fe12a9 86&Header::closebigbox();
72fe12a9 87&Header::closepage();