diff --git a/net/ripe-atlas/Makefile b/net/ripe-atlas/Makefile index d426169862bd6e..9031c199c4ae91 100644 --- a/net/ripe-atlas/Makefile +++ b/net/ripe-atlas/Makefile @@ -6,12 +6,12 @@ include $(TOPDIR)/rules.mk PKG_NAME:=ripe-atlas -PKG_VERSION:=5110 +PKG_VERSION:=5120 PKG_RELEASE:=1 PKG_SOURCE:=ripe-atlas-software-probe-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://codeload.github.com/RIPE-NCC/ripe-atlas-software-probe/tar.gz/refs/tags/$(PKG_VERSION)? -PKG_HASH:=9ff4931056b7da67e13478c29dfaea0f647ee4cb725f864ba5fa28a33a8ec5c7 +PKG_HASH:=d399f793d1576d7856023c2fde69453a0e5dbd537b03669b9767eb86957021f2 PKG_BUILD_DIR:=$(BUILD_DIR)/ripe-atlas-software-probe-$(PKG_VERSION) PKG_MAINTAINER:=Tiago Gaspar , Michel Stam @@ -62,7 +62,6 @@ define Package/ripe-atlas-common +jsonfilter \ +openssh-client \ +openssh-keygen \ - +libopenssl \ +@OPENSSL_WITH_DEPRECATED \ +@BUSYBOX_CONFIG_KILL \ +@BUSYBOX_CONFIG_KILLALL \ diff --git a/net/ripe-atlas/patches/001-uname.patch b/net/ripe-atlas/patches/001-uname.patch deleted file mode 100644 index ca1d9ebd0099cd..00000000000000 --- a/net/ripe-atlas/patches/001-uname.patch +++ /dev/null @@ -1,30 +0,0 @@ -From 64a088ae6c2752888966167508e1318bed047f03 Mon Sep 17 00:00:00 2001 -From: ttaiclet -Date: Wed, 16 Apr 2025 18:09:56 +0200 -Subject: [PATCH] changed: uname instead of hostname for generic ssh-key - creation - -hostname is a call to uname() in most implementations, but requires -an additional binary to be shipped. By using uname directly, no -additional binary has to be shipped. - -See 'uname' in the following links: -- https://linux.die.net/man/2/gethostname -- https://pubs.opengroup.org/onlinepubs/7908799/xsh/sysutsname.h.html - -Reviewed-by: Marios Mavropoulos ---- - bin/arch/generic/generic-ATLAS.sh.in | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - ---- a/bin/arch/generic/generic-ATLAS.sh.in -+++ b/bin/arch/generic/generic-ATLAS.sh.in -@@ -49,7 +49,7 @@ get_ether_addr - - # Create ssh keys if they are not there yet. - if [ ! -f $ATLAS_SYSCONFDIR/probe_key ]; then -- name=$(hostname -s) -+ name=$(uname -n) - ssh-keygen -t rsa -P '' -C $name -f $ATLAS_SYSCONFDIR/probe_key - chown -R @ripe_atlas_user@:@ripe_atlas_group@ $ATLAS_SYSCONFDIR - fi