mirror of
https://github.com/webmin/webmin.git
synced 2025-07-20 16:48:46 +00:00
11 lines
213 B
Perl
Executable File
11 lines
213 B
Perl
Executable File
#!/usr/local/bin/perl
|
|
# Stop the ProFTPD server process
|
|
|
|
require './proftpd-lib.pl';
|
|
&error_setup($text{'stop_err'});
|
|
$err = &stop_proftpd();
|
|
&error($err) if ($err);
|
|
&webmin_log("stop");
|
|
&redirect($in{'redir'});
|
|
|