blob: 364ffb21c5e60c719988d24ed62eb1d32d063938 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
#!/sbin/openrc-run
# Alpine Linux init.d for TinySSH
# Copyright 2015 Stuart Cardall (developer@it-offshore.co.uk)
# Distributed under the terms of the GNU General Public License, v2 or later #
name=tinysshd
daemon=/usr/sbin/$name
keygen=$daemon-makekey
CONFDIR=${CONFDIR:-/etc/tinyssh}
keydir=${CONFDIR}/sshkeys
OPTIONS=${OPTIONS:-\-v -l}
PORT=${PORT:-22}
pidfile=/var/run/$name.pid
server_opts="-HRDl0 0.0.0.0 ${PORT} $daemon ${OPTIONS} $keydir"
depend() {
use net
after logger firewall
}
checkconfig() {
checkpath --directory ${CONFDIR}
eval $keygen $keydir 2>/dev/null
# tinyssh also runs from inetd without tcpserver
if [ ! -f /usr/bin/tcpserver ]; then
apk add --quiet ucspi-tcp
fi
}
start() {
checkconfig
ebegin "Starting ${name}"
start-stop-daemon --start --make-pidfile --background --pidfile $pidfile \
--exec tcpserver -- $server_opts
eend $?
}
stop() {
ebegin "Stopping ${name}"
start-stop-daemon --stop --quiet \
--pidfile $pidfile
eend $?
}
|