#!/bin/sh
# sshd/run
# daemontools run script for sshd service
# ** "foreground" version **
# wcm, 2004.02.12 - 2004.02.12
# ===
exec 2>&1
echo "*** Starting sshd..."
exec \
    /usr/sbin/sshd -D \
    -e -f /etc/ssh/sshd_config

### that's all, folks!