From 5c9f3ca3e307be53b45beeed2ce1626f38008625 Mon Sep 17 00:00:00 2001 From: Stuart Cardall Date: Thu, 18 Aug 2016 20:46:53 +0000 Subject: testing/[various]: move to community albatross-themes apk-post-messages autossh bitcoin btrbk entr ffmpegthumbnailer firejail firetools fwsnort gnome-colors imapsync inetutils-syslogd inotify-tools-inc isync junit ktsuss letsencrypt-nosudo libmbim libndp libqmi libteam mini-sendmail modemmanager namecoin networkmanager nginx-naxsi numix-themes nxapi opencl-headers opencl-icd-loader opus-tools perl-authen-ntlm perl-bit-vector perl-data-uniqid perl-file-copy-recursive perl-getopt-argvfile perl-io-tee perl-iptables-chainmgr perl-iptables-parse perl-module-scandeps perl-par-dist perl-par-packer perl-par perl-uri-escape psad py-crcmod py-graphviz py-lz4 py-opencl py-opengl-accelerate runit secpwgen secure-delete socklog spacefm tinyssh udevil virt-viewer virtualbricks whois wrk xpra zram-init --- community/tinyssh/tinyssh.initd | 43 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 community/tinyssh/tinyssh.initd (limited to 'community/tinyssh/tinyssh.initd') diff --git a/community/tinyssh/tinyssh.initd b/community/tinyssh/tinyssh.initd new file mode 100644 index 0000000000..364ffb21c5 --- /dev/null +++ b/community/tinyssh/tinyssh.initd @@ -0,0 +1,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 $? +} -- cgit v1.2.3