mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-25 12:15:32 +03:00
32 lines
745 B
Text
32 lines
745 B
Text
#!/sbin/openrc-run
|
|
# Alpine Linux init.d for TinySSH
|
|
# Copyright 2017 Stuart Cardall (https://github.com/itoffshore)
|
|
# Distributed under the terms of the GNU General Public License, v2 or later #
|
|
|
|
supervisor=supervise-daemon
|
|
description="Small SSH server using NaCl (no dependency on OpenSSL)"
|
|
|
|
daemon=/usr/sbin/tinysshd
|
|
keygen=$daemon-makekey
|
|
|
|
CONFDIR=${CONFDIR:-/etc/tinyssh}
|
|
keydir=${CONFDIR}/sshkeys
|
|
OPTIONS=${OPTIONS:-\-v -l}
|
|
PORT=${PORT:-22}
|
|
IP=${IP:-0.0.0.0}
|
|
|
|
command="tcpserver"
|
|
command_args="-HRDl0 ${IP} ${PORT} $daemon ${OPTIONS} $keydir"
|
|
proxy_env=/etc/profile.d/proxy.sh
|
|
|
|
depend() {
|
|
use net
|
|
after logger firewall
|
|
}
|
|
|
|
start_pre() {
|
|
if ! [ -d "$keydir" ]; then
|
|
checkpath --directory ${CONFDIR}
|
|
$keygen $keydir 2>/dev/null
|
|
fi
|
|
}
|