mirror of
https://github.com/webmin/webmin.git
synced 2026-02-06 23:42:21 +00:00
10 lines
227 B
Perl
Executable File
10 lines
227 B
Perl
Executable File
#!/usr/local/bin/perl
|
|
# start.cgi
|
|
# Start the FTP server process with flags -l -a -S
|
|
|
|
require './wuftpd-lib.pl';
|
|
&system_logged("$config{'ftpd_path'} -l -a -S >/dev/null 2>&1 </dev/null");
|
|
&webmin_log("start");
|
|
&redirect("");
|
|
|