mirror of
https://github.com/webmin/webmin.git
synced 2025-07-23 00:30:33 +00:00
12 lines
229 B
Perl
Executable File
12 lines
229 B
Perl
Executable File
#!/usr/local/bin/perl
|
|
# start.cgi
|
|
# Start the ProFTPD server process
|
|
|
|
require './proftpd-lib.pl';
|
|
&error_setup($text{'start_err'});
|
|
$err = &start_proftpd();
|
|
&error($err) if ($err);
|
|
&webmin_log("start");
|
|
&redirect($in{'redir'});
|
|
|