- Redhat init script patch from Chun-Chung Chen

<cjj@u.washington.edu>
This commit is contained in:
Damien Miller 1999-12-18 20:54:52 +11:00
parent fdb5f13c5b
commit c4c647fb94
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,7 @@
19991218
- Redhat init script patch from Chun-Chung Chen
<cjj@u.washington.edu>
19991216 19991216
- Makefile changes for Solaris from Peter Kocks - Makefile changes for Solaris from Peter Kocks
<peter.kocks@baygate.com> <peter.kocks@baygate.com>
@ -409,7 +413,8 @@
- [ssh.1] user/958: check ~/.ssh/known_hosts for rhosts-rsa, too - [ssh.1] user/958: check ~/.ssh/known_hosts for rhosts-rsa, too
- [sshd.8] user/958: check ~/.ssh/known_hosts for rhosts-rsa, too - [sshd.8] user/958: check ~/.ssh/known_hosts for rhosts-rsa, too
- Fix integer overflow which was messing up scp's progress bar for large - Fix integer overflow which was messing up scp's progress bar for large
file transfers. Fix submitted to OpenBSD developers. file transfers. Fix submitted to OpenBSD developers. Report and fix
from Kees Cook <cook@cpoint.net>
- Merged more OpenBSD CVS changes: - Merged more OpenBSD CVS changes:
- [auth-krb4.c auth-passwd.c] remove x11- and krb-cleanup from fatal() - [auth-krb4.c auth-passwd.c] remove x11- and krb-cleanup from fatal()
+ krb-cleanup cleanup + krb-cleanup cleanup

View File

@ -31,6 +31,7 @@ case "$1" in
RETVAL=$? RETVAL=$?
;; ;;
esac esac
[ $RETVAL -eq 0 ] && touch /var/lock/subsys/sshd
fi fi
echo echo
;; ;;
@ -40,6 +41,7 @@ case "$1" in
killproc sshd killproc sshd
fi fi
echo echo
[ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/sshd
;; ;;
restart) restart)
$0 stop $0 stop