mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-06 22:51:41 +00:00
361c7337a3
not needed for the port. Big thanks to Issei-san for doing the majority of the work necessary for this upgrade! Submitted by: Issei Suzuki <issei@jp.FreeBSD.org>
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
|