forked from webmin/webmin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmon.cgi
executable file
·39 lines (33 loc) · 1004 Bytes
/
mon.cgi
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#!/usr/local/bin/perl
# mon.cgi
# Run the included MON cgi program
require './mon-lib.pl';
&ui_print_header(undef, $text{'status_title'}, "");
if (!-x $config{'mon_cgi'}) {
print "<p>",&text('status_ecgi', "<tt>$config{'mon_cgi'}</tt>",
"../config.cgi?$module_name"),"<p>\n";
&ui_print_footer("", $text{'index_return'});
exit;
}
if (&same_file($config{'mon_cgi'}, $0)) {
print "<p>",&text('status_esame', "<tt>$config{'mon_cgi'}</tt>",
"../config.cgi?$module_name"),"<p>\n";
&ui_print_footer("", $text{'index_return'});
exit;
}
eval "use Mon::Client";
if ($@) {
print "<p>",&text('status_eperl', "<tt>Mon::Client</tt>",
"../cpan/download.cgi?source=3&cpan=Mon::Client"),"<p>\n";
&ui_print_footer("", $text{'index_return'});
exit;
}
&open_execute_command(CGI, "$config{'mon_cgi'} 2>&1", 1, 1);
while(<CGI>) {
$body .= $_;
}
close(CGI);
$body =~ s/^[\000-\177]*<body[^>]*>//i;
$body =~ s/<\/body>[\000-\177]*$//i;
print $body;
&ui_print_footer("", $text{'index_return'});