зеркало из https://github.com/Azure/sonic-openssh.git
- sshd Redhat init script patch from Jim Knoble <jmknoble@pobox.com>
fixes compatability with 4.x and 5.x
This commit is contained in:
Родитель
aae6c614da
Коммит
0c078c6633
|
@ -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
|
||||
;;
|
||||
|
|
Загрузка…
Ссылка в новой задаче