mirror of
https://github.com/webmin/webmin.git
synced 2025-07-21 23:40:34 +00:00
15 lines
288 B
Perl
Executable File
15 lines
288 B
Perl
Executable File
#!/usr/local/bin/perl
|
|
# Start the LDAP client daemon
|
|
|
|
require './ldap-client-lib.pl';
|
|
&error_setup($text{'start_err'});
|
|
|
|
&fix_ldap_authconfig();
|
|
&foreign_require("init");
|
|
($ok, $out) = &init::start_action($config{'init_name'});
|
|
$ok || &error($out);
|
|
|
|
&webmin_log("start");
|
|
&redirect("");
|
|
|