#!/usr/bin/perl
# check.cgi
# Check if the firewall is valid
require './shorewall6-lib.pl';
&ui_print_header(undef, $text{'check_title'}, "");
print "$text{'check_cmd'}
\n";
print "";
open(STATUS, "$config{'shorewall6'} check 2>&1 |");
while(\n";
if ($?) {
print "$text{'check_failed'}
\n"; } else { print "$text{'check_ok'}
\n"; } &ui_print_footer("", $text{'index_return'});