mirror of
https://github.com/webmin/webmin.git
synced 2026-02-08 08:19:57 +00:00
13 lines
261 B
Perl
Executable File
13 lines
261 B
Perl
Executable File
#!/usr/local/bin/perl
|
|
# start.cgi
|
|
# Start bind 8
|
|
|
|
require './bind8-lib.pl';
|
|
$access{'ro'} && &error($text{'start_ecannot'});
|
|
$access{'apply'} || &error($text{'start_ecannot'});
|
|
$err = &start_bind();
|
|
&error($err) if ($err);
|
|
&webmin_log("start");
|
|
&redirect("");
|
|
|