- sshd Redhat init script patch from Jim Knoble <jmknoble@pobox.com>

fixes compatability with 4.x and 5.x
This commit is contained in:
Damien Miller 1999-12-07 14:53:57 +11:00
Родитель aae6c614da
Коммит 0c078c6633
2 изменённых файлов: 14 добавлений и 2 удалений

Просмотреть файл

@ -1,3 +1,7 @@
19991207
- sshd Redhat init script patch from Jim Knoble <jmknoble@pobox.com>
fixes compatability with 4.x and 5.x
19991204
- Small cleanup of PAM code in sshd.c
- Merged OpenBSD CVS changes:

Просмотреть файл

@ -21,8 +21,16 @@ case "$1" in
start)
echo -n "Starting sshd: "
if [ ! -f /var/run/sshd.pid ] ; then
/usr/sbin/sshd && success "sshd startup" || failure "sshd startup"
RETVAL=$?
case "`type -type success`" in
function)
/usr/sbin/sshd && success "sshd startup" || failure "sshd startup"
RETVAL=$?
;;
*)
/usr/sbin/sshd && echo -n "sshd "
RETVAL=$?
;;
esac
fi
echo
;;