openssh: update to 8.3p1

Removed outdated options.

Small bashism fix in the init script.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
This commit is contained in:
Rosen Penev
2020-06-25 16:23:02 -07:00
parent f10023094e
commit 8e77b50954
2 changed files with 4 additions and 9 deletions
+1 -1
View File
@@ -38,7 +38,7 @@ shutdown() {
# kill active clients
for pid in $(pidof sshd)
do
[ "$pid" == "$$" ] && continue
[ "$pid" = "$$" ] && continue
[ -e "/proc/$pid/stat" ] && kill $pid
done
}