mirror of
https://github.com/webmin/webmin.git
synced 2025-08-12 23:29:04 +00:00
14 lines
260 B
Perl
Executable File
14 lines
260 B
Perl
Executable File
#!/usr/local/bin/perl
|
|
# Stop the LDAP client daemon
|
|
|
|
require './ldap-client-lib.pl';
|
|
&error_setup($text{'stop_err'});
|
|
|
|
&foreign_require("init");
|
|
($ok, $out) = &init::stop_action($config{'init_name'});
|
|
$ok || &error($out);
|
|
|
|
&webmin_log("stop");
|
|
&redirect("");
|
|
|