mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-05 22:43:24 +00:00
810b23015a
stopping the server. Martti's submission did not include -h, which I added because if I had added the scripts the way he submitted them, the server wouldn't be started on startup. PR: 10196 Submitted by: Martti Kuparinen <martti.kuparinen@ericsson.com> Reviewed by: kris (partially) No response: maintainers (PR opened February 22, 1999)
28 lines
454 B
Bash
28 lines
454 B
Bash
#!/bin/sh
|
|
case "$1" in
|
|
start)
|
|
!!PREFIX!!/sbin/sshd
|
|
echo -n ' sshd'
|
|
;;
|
|
stop)
|
|
if [ -f /var/run/sshd.pid ]; then
|
|
kill -TERM `cat /var/run/sshd.pid`
|
|
rm -f /var/run/sshd.pid
|
|
echo -n ' sshd'
|
|
fi
|
|
;;
|
|
restart)
|
|
if [ -f /var/run/sshd.pid ]; then
|
|
kill -HUP `cat /var/run/sshd.pid`
|
|
echo 'sshd restarted'
|
|
fi
|
|
;;
|
|
-h)
|
|
echo "Usage: `basename $0` { start | stop | restart }"
|
|
;;
|
|
*)
|
|
!!PREFIX!!/sbin/sshd
|
|
echo -n ' sshd'
|
|
;;
|
|
esac
|