diff options
author | Will Andrews <will@FreeBSD.org> | 2000-04-05 22:21:44 +0000 |
---|---|---|
committer | Will Andrews <will@FreeBSD.org> | 2000-04-05 22:21:44 +0000 |
commit | 810b23015a0381c37aaa2071cb7b425d30ff42e7 (patch) | |
tree | 49e7e7c2fc108456e79e92b75c5ad54f32df3dcb /security/ssh/files | |
parent | Remove DTDDECL, this produces bogus warnings. (diff) |
Add better sshd startup scripts; specifically, allow restarting and
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)
Notes
Notes:
svn path=/head/; revision=27351
Diffstat (limited to 'security/ssh/files')
-rw-r--r-- | security/ssh/files/sshd.sh | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/security/ssh/files/sshd.sh b/security/ssh/files/sshd.sh new file mode 100644 index 000000000000..dd882003037c --- /dev/null +++ b/security/ssh/files/sshd.sh @@ -0,0 +1,27 @@ +#!/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 |