From 207e5d3f387ef948450ec365a10dde8ec9548631 Mon Sep 17 00:00:00 2001 From: Larry Lawrence Date: Sat, 18 Jan 2003 01:56:03 +0000 Subject: [PATCH] modified sshd startup script git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@607 af4574ff-66df-0310-9fd7-8a98e5e911e0 --- index.xml | 4 ++-- introduction/welcome/changelog.xml | 4 ++++ server/other/openssh/openssh-config.xml | 8 ++++---- 3 files changed, 10 insertions(+), 6 deletions(-) diff --git a/index.xml b/index.xml index 188f25f47c..54154b907d 100644 --- a/index.xml +++ b/index.xml @@ -2,8 +2,8 @@ - + + diff --git a/introduction/welcome/changelog.xml b/introduction/welcome/changelog.xml index f74cad85c0..602b683f3c 100644 --- a/introduction/welcome/changelog.xml +++ b/introduction/welcome/changelog.xml @@ -10,6 +10,10 @@ page in Chapter 1 for details on who wrote what. +January 17th, 2003 [larry]: server: put full paths in +openssh script. Could not get reload to work without +it. + January 17th, 2003 [billyoc]: gnome: Updated gal to version 0.22. diff --git a/server/other/openssh/openssh-config.xml b/server/other/openssh/openssh-config.xml index 584d076ea1..1785945daa 100644 --- a/server/other/openssh/openssh-config.xml +++ b/server/other/openssh/openssh-config.xml @@ -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 ;; *)