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 ;; *)