From 2b2cf52471efcff7d5cef4bbf6d724f8c84b0f39 Mon Sep 17 00:00:00 2001 From: Damien Miller Date: Mon, 16 Oct 2000 12:25:17 +1100 Subject: - Added condrestart to Redhat init script. Patch from Pekka Savola - Update version in Redhat spec file --- contrib/redhat/openssh.spec | 2 +- contrib/redhat/sshd.init | 9 ++++++++- 2 files changed, 9 insertions(+), 2 deletions(-) (limited to 'contrib/redhat') diff --git a/contrib/redhat/openssh.spec b/contrib/redhat/openssh.spec index d1bd16701..95be389c8 100644 --- a/contrib/redhat/openssh.spec +++ b/contrib/redhat/openssh.spec @@ -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 diff --git a/contrib/redhat/sshd.init b/contrib/redhat/sshd.init index a30d48065..83c10a885 100755 --- a/contrib/redhat/sshd.init +++ b/contrib/redhat/sshd.init @@ -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 -- cgit v1.2.3