Files
webmin/shorewall/check.cgi
Ilia Ross 342fc4d12d
Some checks failed
Tests / prove (push) Has been cancelled
Package and upload artifacts / build (push) Has been cancelled
Fix remaining raw HTML in Shorewall module to use ui-lib
2026-08-19 22:49:07 +02:00

28 lines
538 B
Perl
Executable File

#!/usr/local/bin/perl
# check.cgi
# Check if the firewall is valid
use strict;
use warnings;
our (%text, %config);
require './shorewall-lib.pl';
&ui_print_header(undef, $text{'check_title'}, "");
print "<b>$text{'check_cmd'}</b><br>\n";
print "<pre>";
open(STATUS, "$config{'shorewall'} check 2>&1 |");
while(<STATUS>) {
print &html_escape($_);
}
close(STATUS);
print "</pre>\n";
if ($?) {
print "<b>$text{'check_failed'}</b><p>\n";
}
else {
print "<b>$text{'check_ok'}</b><p>\n";
}
&ui_print_footer("", $text{'index_return'});