diff options
author | Darren Tucker <dtucker@dtucker.net> | 2023-05-11 16:31:44 +1000 |
---|---|---|
committer | Rosen Penev <rosenp@gmail.com> | 2023-05-17 11:02:19 +0300 |
commit | 1daddd582f7fec1058ecb2ecf0d66e6a2951f56c (patch) | |
tree | 48e249b113a732a98797a45d4167507ea907d5c0 | |
parent | 3aaccd254cbef8d6d3b4befedf8c564d15787e14 (diff) |
openssh: Use CDN first for source downloads.
Also point to https for website.
Signed-off-by: Darren Tucker <dtucker@dtucker.net>
-rw-r--r-- | net/openssh/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/openssh/Makefile b/net/openssh/Makefile index 06cba0afe..b76ef4070 100644 --- a/net/openssh/Makefile +++ b/net/openssh/Makefile @@ -12,8 +12,8 @@ PKG_VERSION:=9.3p1 PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz -PKG_SOURCE_URL:=https://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/ \ - https://ftp.spline.de/pub/OpenBSD/OpenSSH/portable/ +PKG_SOURCE_URL:=https://cdn.openbsd.org/pub/OpenBSD/OpenSSH/portable/ \ + https://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/ PKG_HASH:=e9baba7701a76a51f3d85a62c383a3c9dcd97fa900b859bc7db114c1868af8a8 PKG_LICENSE:=BSD ISC @@ -34,7 +34,7 @@ define Package/openssh/Default DEPENDS:=+libopenssl +zlib TITLE:=OpenSSH MAINTAINER:=Peter Wagner <tripolar@gmx.at> - URL:=http://www.openssh.com/ + URL:=https://www.openssh.com/ SUBMENU:=SSH endef |