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:
parent
f10023094e
commit
8e77b50954
2 changed files with 4 additions and 9 deletions
|
@ -8,13 +8,13 @@
|
||||||
include $(TOPDIR)/rules.mk
|
include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
PKG_NAME:=openssh
|
PKG_NAME:=openssh
|
||||||
PKG_VERSION:=8.2p1
|
PKG_VERSION:=8.3p1
|
||||||
PKG_RELEASE:=4
|
PKG_RELEASE:=1
|
||||||
|
|
||||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||||
PKG_SOURCE_URL:=https://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/ \
|
PKG_SOURCE_URL:=https://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/ \
|
||||||
https://ftp.spline.de/pub/OpenBSD/OpenSSH/portable/
|
https://ftp.spline.de/pub/OpenBSD/OpenSSH/portable/
|
||||||
PKG_HASH:=43925151e6cf6cee1450190c0e9af4dc36b41c12737619edff8bcebdff64e671
|
PKG_HASH:=f2befbe0472fe7eb75d23340eb17531cb6b3aac24075e2066b41f814e12387b2
|
||||||
|
|
||||||
PKG_LICENSE:=BSD ISC
|
PKG_LICENSE:=BSD ISC
|
||||||
PKG_LICENSE_FILES:=LICENCE
|
PKG_LICENSE_FILES:=LICENCE
|
||||||
|
@ -150,13 +150,9 @@ define Package/openssh-sftp-avahi-service/conffiles
|
||||||
endef
|
endef
|
||||||
|
|
||||||
CONFIGURE_ARGS += \
|
CONFIGURE_ARGS += \
|
||||||
$(DISABLE_NLS) \
|
|
||||||
--sysconfdir=/etc/ssh \
|
--sysconfdir=/etc/ssh \
|
||||||
--with-privsep-user=sshd \
|
--with-privsep-user=sshd \
|
||||||
--with-privsep-path=/var/empty \
|
--with-privsep-path=/var/empty \
|
||||||
--enable-shared \
|
|
||||||
--disable-static \
|
|
||||||
--disable-debug \
|
|
||||||
--disable-strip \
|
--disable-strip \
|
||||||
--disable-etc-default-login \
|
--disable-etc-default-login \
|
||||||
--disable-lastlog \
|
--disable-lastlog \
|
||||||
|
@ -166,7 +162,6 @@ CONFIGURE_ARGS += \
|
||||||
--disable-wtmpx \
|
--disable-wtmpx \
|
||||||
--without-bsd-auth \
|
--without-bsd-auth \
|
||||||
--without-kerberos5 \
|
--without-kerberos5 \
|
||||||
--without-x \
|
|
||||||
--with-stackprotect \
|
--with-stackprotect \
|
||||||
--with$(if $(CONFIG_OPENSSL_ENGINE),,out)-ssl-engine
|
--with$(if $(CONFIG_OPENSSL_ENGINE),,out)-ssl-engine
|
||||||
|
|
||||||
|
|
|
@ -38,7 +38,7 @@ shutdown() {
|
||||||
# kill active clients
|
# kill active clients
|
||||||
for pid in $(pidof sshd)
|
for pid in $(pidof sshd)
|
||||||
do
|
do
|
||||||
[ "$pid" == "$$" ] && continue
|
[ "$pid" = "$$" ] && continue
|
||||||
[ -e "/proc/$pid/stat" ] && kill $pid
|
[ -e "/proc/$pid/stat" ] && kill $pid
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue