mirror of
https://github.com/webmin/webmin.git
synced 2025-07-20 16:48:46 +00:00
13 lines
262 B
Perl
Executable File
13 lines
262 B
Perl
Executable File
#!/usr/local/bin/perl
|
|
# Apply the current config
|
|
|
|
require './ldap-server-lib.pl';
|
|
&error_setup($text{'apply_err'});
|
|
$access{'apply'} || &error($text{'apply_ecannot'});
|
|
$err = &apply_configuration();
|
|
&error($err) if ($err);
|
|
&webmin_log('apply');
|
|
&redirect("");
|
|
|
|
|