Make native package dependencies consistent between DEB/RPM packages. (#21118)
* Make native package dependencies consistent between DEB/RPM packages. * Fix typo. * Further fixes.
Austin S. Hemmelgarn committed
Oct 9, 2025 at 06:44 UTC
b88d6b995ef6425b4c69a507c12df01a259fa98d
2 files changed
+2
-7
netdata.spec.in
-1
@@ -261,7 +261,6 @@ Suggests: %{name}-plugin-cups = %{version}
261
Recommends: %{name}-plugin-systemd-journal = %{version}
262
Recommends: %{name}-plugin-systmed-units = %{version}
263
Recommends: %{name}-plugin-network-viewer = %{version}
264
-Recommends: %{name}-plugin-logs-management = %{version}
264
%else
265
Requires: %{name}-plugin-systemd-journal = %{version}
266
Requires: %{name}-plugin-network-viewer = %{version}
packaging/cmake/Modules/Packaging.cmake
+2
-6
@@ -56,9 +56,9 @@ set(CPACK_DEBIAN_NETDATA_PACKAGE_NAME "netdata")
56
set(CPACK_DEBIAN_NETDATA_PACKAGE_SECTION "net")
57
set(CPACK_DEBIAN_NETDATA_PACKAGE_PREDEPENDS "adduser, libcap2-bin")
58
set(CPACK_DEBIAN_NETDATA_PACKAGE_SUGGESTS
59
- "netdata-plugin-cups, netdata-plugin-freeipmi")
59
+ "netdata-plugin-cups, netdata-plugin-freeipmi, netdata-plugin-ibm")
60
set(CPACK_DEBIAN_NETDATA_PACKAGE_RECOMMENDS
61
- "netdata-plugin-systemd-journal, \
61
+ "netdata-plugin-systemd-journal, netdata-plugin-systemd-units, \
62
netdata-plugin-network-viewer")
63
set(CPACK_DEBIAN_NETDATA_PACKAGE_CONFLICTS
64
"netdata-core, netdata-plugins-bash, netdata-plugins-python, netdata-web")
@@ -83,10 +83,6 @@ if(ENABLE_PLUGIN_GO)
83
list(APPEND _main_deps "netdata-plugin-go")
84
endif()
85
86
-if(ENABLE_PLUGIN_IBM)
87
- list(APPEND _main_deps "netdata-plugin-ibm")
88
-endif()
89
-
86
if(ENABLE_PLUGIN_DEBUGFS)
87
list(APPEND _main_deps "netdata-plugin-debugfs")
88
endif()