From 76f44f55ad4ee67c177d1fc5aa92a6a5b6ac4a95 Mon Sep 17 00:00:00 2001 From: "Daniel F. Dickinson" Date: Sat, 9 May 2026 14:41:25 -0400 Subject: [PATCH 1/2] zabbix: bump version Update to version 7.0.26 (latest LTS). Signed-off-by: Daniel F. Dickinson --- admin/zabbix/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/admin/zabbix/Makefile b/admin/zabbix/Makefile index b2e4f6828cef9b..5473512dc19c94 100644 --- a/admin/zabbix/Makefile +++ b/admin/zabbix/Makefile @@ -8,13 +8,13 @@ include $(TOPDIR)/rules.mk PKG_NAME:=zabbix -PKG_VERSION:=7.0.25 +PKG_VERSION:=7.0.26 PKG_RELEASE:=1 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://cdn.zabbix.com/zabbix/sources/stable/$(basename $(PKG_VERSION))/ \ https://cdn.zabbix.com/zabbix/sources/oldstable/$(basename $(PKG_VERSION))/ -PKG_HASH:=3a42e85da9cbd8aadd11bfcbe021f0f9c6caa510f564e37f3ac1046984acb729 +PKG_HASH:=3c27a97b52c75e2eccfa43dec5e3fd7d52876f5fdd94172495b025ec9f2a13a8 PKG_MAINTAINER:=Daniel F. Dickinson PKG_LICENSE:=AGPL-3.0-only From 2ba136b349af2ab6ca6663fffe76504e8fcd8a6b Mon Sep 17 00:00:00 2001 From: "Daniel F. Dickinson" Date: Sat, 9 May 2026 17:32:18 -0400 Subject: [PATCH 2/2] zabbix: prevent invalid package selection zabbix-sender and zabbix-get are only build if agentd is built. Therefore do not allow selection them if the full agentd is not being built. Signed-off-by: Daniel F. Dickinson --- admin/zabbix/Makefile | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/admin/zabbix/Makefile b/admin/zabbix/Makefile index 5473512dc19c94..21c368bdb8a822 100644 --- a/admin/zabbix/Makefile +++ b/admin/zabbix/Makefile @@ -62,12 +62,13 @@ endef define Package/zabbix-get/config config ZABBIX_BUILD_SUPPORT_BIN bool - depends on (PACKAGE_zabbix-agentd || PACKAGE_zabbix-proxy || PACKAGE_zabbix-server) && ZABBIX_ENABLE_ZABBIX + depends on PACKAGE_zabbix-agentd && ZABBIX_ENABLE_ZABBIX default y help - This option exists to prevent trying to build get and/or sender when none - of agentd, server, or proxy are being built. In that case get and sender are - not built by the Zabbix build system. + This option exists to prevent trying to build get and/or sender when the + of agent is not being built. In that case get and sender are not built by + the Zabbix build system. This is not a dependency DEPENDS because the + binaries do not require the agent to function. endef define Package/zabbix/Default