mirror of
https://github.com/webmin/webmin.git
synced 2026-01-14 03:11:35 +00:00
12 lines
199 B
Perl
Executable File
12 lines
199 B
Perl
Executable File
#!/usr/local/bin/perl
|
|
# Stop the ssh daemon
|
|
|
|
require './sshd-lib.pl';
|
|
&ReadParse();
|
|
&error_setup($text{'stop_err'});
|
|
$err = &stop_sshd();
|
|
&error($err) if ($err);
|
|
&webmin_log("stop");
|
|
&redirect("");
|
|
|