From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from gate001.proxmox.com (gate001.proxmox.com [IPv6:2a0f:8001:1:32::40]) by lore.proxmox.com (Postfix) with ESMTPS id 4B67A1FF0B2 for ; Thu, 20 Aug 2026 14:53:41 +0200 (CEST) Received: from gate001.proxmox.com (localhost.localdomain [127.0.0.1]) by gate001.proxmox.com (Proxmox) with ESMTP id 3FC8521576; Thu, 20 Aug 2026 14:53:40 +0200 (CEST) Mime-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=UTF-8 Date: Thu, 20 Aug 2026 14:53:26 +0200 Message-Id: Subject: applied: [PATCH proxmox-datacenter-manager v3 4/5] d/control: depend on tools used by the system report From: "Lukas Wagner" To: "Erik Fastermann" , , X-Mailer: aerc 0.21.0-0-g5549850facc2-dirty References: <20260811114332.283776-1-e.fastermann@proxmox.com> <20260811114332.283776-5-e.fastermann@proxmox.com> In-Reply-To: <20260811114332.283776-5-e.fastermann@proxmox.com> X-Bm-Milter-Handled: 55990f41-d878-4baa-be0a-ee34c49e34d2 X-Bm-Transport-Timestamp: 1787230381594 X-SPAM-LEVEL: Spam detection results: 0 AWL 0.794 Adjusted score from AWL reputation of From: address DMARC_MISSING 0.1 Missing DMARC policy KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment (newer systems) RCVD_IN_DNSWL_MED -2.3 Sender listed at https://www.dnswl.org/, medium trust SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record Message-ID-Hash: TJCFUFJ2HETDH5ZT7HGFPZ5YUIDN43ML X-Message-ID-Hash: TJCFUFJ2HETDH5ZT7HGFPZ5YUIDN43ML X-MailFrom: l.wagner@proxmox.com X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; loop; banned-address; emergency; member-moderation; nonmember-moderation; administrivia; implicit-dest; max-recipients; max-size; news-moderation; no-subject; digests; suspicious-header X-Mailman-Version: 3.3.10 Precedence: list List-Id: Proxmox Backup Server development discussion List-Help: List-Owner: List-Post: List-Subscribe: List-Unsubscribe: On Tue Aug 11, 2026 at 1:43 PM CEST, Erik Fastermann wrote: > The report runs ip (package iproute2), top (package procps) and ethtool, > plus zpool, zfs and zarcstat (package zfsutils-linux) for the ZFS > sections and proxmox-boot-tool (package proxmox-kernel-helper) for the > ESP status, none of which were depended on directly. > > The ZFS tools and proxmox-kernel-helper are recommendations rather than > direct dependencies. For the ZFS tools this matches the control file in > PBS and the proxmox-boot-tool is not required on systems which are not > running a Proxmox kernel. > > Reviewed-by: Christian Ebner > Tested-by: Christian Ebner > Signed-off-by: Erik Fastermann > --- > debian/control | 7 ++++++- > 1 file changed, 6 insertions(+), 1 deletion(-) > > diff --git a/debian/control b/debian/control > index e40137e3..00d3d137 100644 > --- a/debian/control > +++ b/debian/control > @@ -159,7 +159,10 @@ Rules-Requires-Root: no > Package: proxmox-datacenter-manager > Architecture: any > Multi-Arch: allowed > -Depends: libproxmox-acme-plugins, > +Depends: ethtool, > + iproute2, > + libproxmox-acme-plugins, > + procps, > proxmox-datacenter-manager-docs, > proxmox-mini-journalreader (>=3D 1.7), > proxmox-termproxy, > @@ -172,6 +175,8 @@ Recommends: ifupdown2, > proxmox-datacenter-manager-client, > proxmox-datacenter-manager-meta, > proxmox-datacenter-manager-ui, > + proxmox-kernel-helper, > + zfsutils-linux, > Description: Manage multiple Proxmox VE cluster and other Proxmox projec= ts > This package provides the API daemons of the Proxmox Datacenter Manager= (PDM) > which allows one to add multiple Proxmox VE and Proxmox Backup Server Applied this one already, thanks!