mirror of
https://github.com/webmin/webmin.git
synced 2025-07-23 00:30:33 +00:00
15 lines
222 B
Perl
Executable File
15 lines
222 B
Perl
Executable File
#!/usr/local/bin/perl
|
|
# Apply the current configuration
|
|
|
|
require './dhcp-dns-lib.pl';
|
|
&ReadParse();
|
|
&error_setup($text{'apply_err'});
|
|
$err = &apply_configuration();
|
|
if ($err) {
|
|
&error($err);
|
|
}
|
|
else {
|
|
&redirect("");
|
|
}
|
|
|