modified sshd startup script

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@607 af4574ff-66df-0310-9fd7-8a98e5e911e0
This commit is contained in:
Larry Lawrence 2003-01-18 01:56:03 +00:00
parent 6f82d4ee57
commit 207e5d3f38
3 changed files with 10 additions and 6 deletions

View File

@ -2,8 +2,8 @@
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"
"/usr/share/docbook/docbookx.dtd" [
<!ENTITY version "20030115">
<!ENTITY releasedate "January 15th, 2003">
<!ENTITY version "20030117">
<!ENTITY releasedate "January 17th, 2003">
<!ENTITY % book SYSTEM "book/book.ent">
<!ENTITY % preface SYSTEM "preface/preface.ent">

View File

@ -10,6 +10,10 @@ page in Chapter 1 for details on who wrote what.</para>
<itemizedlist>
<listitem><para>January 17th, 2003 [larry]: server: put full paths in
openssh script. Could not get reload to work without
it.</para></listitem>
<listitem><para>January 17th, 2003 [billyoc]: gnome: Updated gal
to version 0.22.</para></listitem>

View File

@ -30,17 +30,17 @@ source $rc_functions
case "$1" in
start)
echo "Starting SSH Server..."
loadproc sshd
loadproc /usr/sbin/sshd
;;
stop)
echo "Stopping SSH Server..."
killproc sshd
killproc /usr/sbin/sshd
;;
reload)
echo "Reloading SSH Server..."
reloadproc sshd
reloadproc /usr/sbin/sshd
;;
restart)
@ -50,7 +50,7 @@ case "$1" in
;;
status)
statusproc sshd
statusproc /usr/sbin/sshd
;;
*)