mirror of
https://github.com/webmin/webmin.git
synced 2025-08-16 14:51:18 +00:00
13 lines
215 B
Perl
Executable File
13 lines
215 B
Perl
Executable File
#!/usr/local/bin/perl
|
|
# start.cgi
|
|
# Start the ssh daemon
|
|
|
|
require './sshd-lib.pl';
|
|
&ReadParse();
|
|
&error_setup($text{'start_err'});
|
|
$err = &start_sshd();
|
|
&error($err) if ($err);
|
|
&webmin_log("start");
|
|
&redirect("");
|
|
|