Handle hostnames with upper-case letters
[webmin.git] / bind8 / start.cgi
1 #!/usr/local/bin/perl
2 # start.cgi
3 # Start bind 8
4
5 require './bind8-lib.pl';
6 $access{'ro'} && &error($text{'start_ecannot'});
7 $access{'apply'} || &error($text{'start_ecannot'});
8 $err = &start_bind();
9 &error($err) if ($err);
10 &webmin_log("start");
11 &redirect($in{'return'} ? $ENV{'HTTP_REFERER'} : "");
12