summaryrefslogtreecommitdiff
path: root/contrib/redhat
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2000-10-16 12:25:17 +1100
committerDamien Miller <djm@mindrot.org>2000-10-16 12:25:17 +1100
commit2b2cf52471efcff7d5cef4bbf6d724f8c84b0f39 (patch)
treed7b26b1f8eb3ea62b96cbc2a3a0848d8d0d3de6f /contrib/redhat
parentcd57198b3e0857218ba461b174063d763dcc9d81 (diff)
- Added condrestart to Redhat init script. Patch from Pekka Savola
<pekkas@netcore.fi> - Update version in Redhat spec file
Diffstat (limited to 'contrib/redhat')
-rw-r--r--contrib/redhat/openssh.spec2
-rwxr-xr-xcontrib/redhat/sshd.init9
2 files changed, 9 insertions, 2 deletions
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 @@
1# Version of OpenSSH 1# Version of OpenSSH
2%define oversion 2.2.0p2 2%define oversion 2.3.0p1
3 3
4# Version of ssh-askpass 4# Version of ssh-askpass
5%define aversion 1.0.2 5%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
81 $0 start 81 $0 start
82 RETVAL=$? 82 RETVAL=$?
83 ;; 83 ;;
84 condrestart)
85 if [ -f /var/lock/subsys/sshd ] ; then
86 $0 stop
87 $0 start
88 RETVAL=$?
89 fi
90 ;;
84 status) 91 status)
85 status sshd 92 status sshd
86 RETVAL=$? 93 RETVAL=$?
87 ;; 94 ;;
88 *) 95 *)
89 echo "Usage: sshd {start|stop|restart|status}" 96 echo "Usage: sshd {start|stop|restart|status|condrestart}"
90 exit 1 97 exit 1
91 ;; 98 ;;
92esac 99esac