Handle hostnames with upper-case letters
[webmin.git] / ipfw / apply.cgi
1 #!/usr/local/bin/perl
2 # apply.cgi
3 # Apply the current firewall configuration
4
5 require './ipfw-lib.pl';
6 &ReadParse();
7 &error_setup($text{'apply_err'});
8 $err = &apply_rules();
9 &error($err) if ($err);
10 $err = &apply_cluster_configuration();
11 &error($err) if ($err);
12 &webmin_log("apply");
13 &redirect("");
14