mirror of
https://abf.rosa.ru/djam/openssh.git
synced 2025-02-25 18:53:02 +00:00
16 lines
321 B
Text
16 lines
321 B
Text
# default: off
|
|
# description: sshd server, xinetd version. \
|
|
# Don't run the standalone version if you run \
|
|
# this.
|
|
service ssh
|
|
{
|
|
disable = yes
|
|
socket_type = stream
|
|
wait = no
|
|
user = root
|
|
server = /usr/sbin/sshd
|
|
server_args = -i
|
|
log_on_success += DURATION USERID
|
|
log_on_failure += USERID
|
|
nice = 10
|
|
}
|