- Added condrestart to Redhat init script. Patch from Pekka Savola

<pekkas@netcore.fi>
 - Update version in Redhat spec file
This commit is contained in:
Damien Miller 2000-10-16 12:25:17 +11:00
Родитель cd57198b3e
Коммит 2b2cf52471
3 изменённых файлов: 14 добавлений и 3 удалений

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

@ -26,7 +26,11 @@
- markus@cvs.openbsd.org 2000/10/15 08:18:31
[rijndael.c]
typo
- Copy manpages back over from OpenBSD - too tedious to wade through diffs
- (djm) Copy manpages back over from OpenBSD - too tedious to wade
through diffs
- Added condrestart to Redhat init script. Patch from Pekka Savola
<pekkas@netcore.fi>
- Update version in Redhat spec file
20001015
- (djm) Fix ssh2 hang on background processes at logout.

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

@ -1,5 +1,5 @@
# Version of OpenSSH
%define oversion 2.2.0p2
%define oversion 2.3.0p1
# Version of ssh-askpass
%define aversion 1.0.2

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

@ -81,12 +81,19 @@ case "$1" in
$0 start
RETVAL=$?
;;
condrestart)
if [ -f /var/lock/subsys/sshd ] ; then
$0 stop
$0 start
RETVAL=$?
fi
;;
status)
status sshd
RETVAL=$?
;;
*)
echo "Usage: sshd {start|stop|restart|status}"
echo "Usage: sshd {start|stop|restart|status|condrestart}"
exit 1
;;
esac