#!/bin/sh case "$1" in 'start') /usr/local/sbin/sshd ;; 'stop') /usr/bin/kill `/usr/bin/head -1 /var/run/sshd.pid` ;; 'reload') /usr/bin/kill -HUP `/usr/bin/head -1 /var/run/sshd.pid` ;; *) echo "Usage: $0 { start | stop }" exit 1 ;; esac exit 0