mirror of
https://github.com/webmin/webmin.git
synced 2026-02-10 01:02:19 +00:00
12 lines
210 B
Perl
12 lines
210 B
Perl
#!/usr/local/bin/perl
|
|
# Apply the current config
|
|
|
|
require './ldap-server-lib.pl';
|
|
&error_setup($text{'apply_err'});
|
|
$err = &apply_configuration();
|
|
&error($err) if ($err);
|
|
&webmin_log('apply');
|
|
&redirect("");
|
|
|
|
|