webmin--webmin
11 行
213 B
Perl
可执行文件
11 行
213 B
Perl
可执行文件
#!/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'});
|
|
|