Handle hostnames with upper-case letters
[webmin.git] / ipfw / bootup.cgi
1 #!/usr/local/bin/perl
2 # bootup.cgi
3 # Enable or disable ipfw at boot time
4
5 require './ipfw-lib.pl';
6 &ReadParse();
7 if ($in{'boot'}) {
8         &enable_boot();
9         }
10 else {
11         &disable_boot();
12         }
13 &webmin_log($in{'boot'} ? "bootup" : "bootdown");
14 &redirect("");
15