#!/bin/sh

PATH=/sbin:/bin:/usr/sbin:/usr/bin

[ "$VERBOSE" != no ] && echo -n "Starting sshd"
sshd
[ "$VERBOSE" != no ] && echo "."

