#!/bin/sh # sshd/run # daemontools run script for sshd service # ** tcpserver version ** # wcm, 2004.02.12 - 2004.02.12 # === CONLIMIT=51 exec 2>&1 echo "*** Starting sshd..." exec softlimit -m3000000 \ tcpserver -vR \ -c ${CONLIMIT} \ -x /etc/tcprules/ssh.cdb \ 0 22 \ /usr/sbin/sshd -i \ -e -f /etc/ssh/sshd_config ### that's all, folks!