public inbox for pbs-devel@lists.proxmox.com
 help / color / mirror / Atom feed
* [PATCH proxmox-backup 0/2] ship and track proxmox-enterprise-support-keyring
@ 2026-07-23 13:05 Friedrich Weber
  2026-07-23 13:05 ` [PATCH proxmox-backup 1/2] d/control: depend on proxmox-enterprise-support-keyring Friedrich Weber
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Friedrich Weber @ 2026-07-23 13:05 UTC (permalink / raw)
  To: pbs-devel

Proxmox VE >= 9.2 ships the package proxmox-enterprise-support-keyring, which
contains SSH public keys used by Proxmox enterprise support (inactive by
default, of course). As of now, the package can also be installed on PBS, but
is not installed by default.

With patch 1/2, proxmox-backup-server will depend on
proxmox-enterprise-support-keyring, so PBS installations will pull in the
package from now on.

With patch 2/2, the 'versions' endpoint will also track
proxmox-enterprise-support-keyring, so the package will appear e.g. in
'proxmox-backup-manager versions --verbose'.

The patches can be applied independently, e.g., it might be desirable to apply
1/2 only with the next PBS major release.

proxmox-backup:

Friedrich Weber (2):
  d/control: depend on proxmox-enterprise-support-keyring
  api: apt: versions: track proxmox-enterprise-support-keyring version

 debian/control       | 1 +
 src/api2/node/apt.rs | 1 +
 2 files changed, 2 insertions(+)


Summary over all repositories:
  2 files changed, 2 insertions(+), 0 deletions(-)

-- 
Generated by git-murpp 0.8.1




^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH proxmox-backup 1/2] d/control: depend on proxmox-enterprise-support-keyring
  2026-07-23 13:05 [PATCH proxmox-backup 0/2] ship and track proxmox-enterprise-support-keyring Friedrich Weber
@ 2026-07-23 13:05 ` Friedrich Weber
  2026-07-23 13:05 ` [PATCH proxmox-backup 2/2] api: apt: versions: track proxmox-enterprise-support-keyring version Friedrich Weber
  2026-07-23 22:00 ` applied: [PATCH proxmox-backup 0/2] ship and track proxmox-enterprise-support-keyring Thomas Lamprecht
  2 siblings, 0 replies; 4+ messages in thread
From: Friedrich Weber @ 2026-07-23 13:05 UTC (permalink / raw)
  To: pbs-devel

This ensures the support keyrings are available (deactivated) on
Proxmox Backup Server installations.

Signed-off-by: Friedrich Weber <f.weber@proxmox.com>
---
 debian/control | 1 +
 1 file changed, 1 insertion(+)

diff --git a/debian/control b/debian/control
index 31d88baa0..1ddb7c481 100644
--- a/debian/control
+++ b/debian/control
@@ -213,6 +213,7 @@ Depends: dmidecode,
          pciutils,
          postfix | mail-transport-agent,
          proxmox-backup-docs,
+         proxmox-enterprise-support-keyring,
          proxmox-mini-journalreader (>= 1.7),
          proxmox-termproxy (>= 2.0.3),
          proxmox-widget-toolkit (>= 5.2.1),
-- 
2.47.3





^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH proxmox-backup 2/2] api: apt: versions: track proxmox-enterprise-support-keyring version
  2026-07-23 13:05 [PATCH proxmox-backup 0/2] ship and track proxmox-enterprise-support-keyring Friedrich Weber
  2026-07-23 13:05 ` [PATCH proxmox-backup 1/2] d/control: depend on proxmox-enterprise-support-keyring Friedrich Weber
@ 2026-07-23 13:05 ` Friedrich Weber
  2026-07-23 22:00 ` applied: [PATCH proxmox-backup 0/2] ship and track proxmox-enterprise-support-keyring Thomas Lamprecht
  2 siblings, 0 replies; 4+ messages in thread
From: Friedrich Weber @ 2026-07-23 13:05 UTC (permalink / raw)
  To: pbs-devel

This makes it easier to tell in enterprise support which keyring
version is available (deactivated by default).

Signed-off-by: Friedrich Weber <f.weber@proxmox.com>
---
 src/api2/node/apt.rs | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/api2/node/apt.rs b/src/api2/node/apt.rs
index afccd5d7b..fa166e0c6 100644
--- a/src/api2/node/apt.rs
+++ b/src/api2/node/apt.rs
@@ -164,6 +164,7 @@ pub fn get_versions() -> Result<Vec<APTUpdateInfo>, Error> {
         "libjs-extjs",
         "proxmox-backup-docs",
         "proxmox-backup-client",
+        "proxmox-enterprise-support-keyring",
         "proxmox-mail-forward",
         "proxmox-mini-journalreader",
         "proxmox-offline-mirror-helper",
-- 
2.47.3





^ permalink raw reply related	[flat|nested] 4+ messages in thread

* applied: [PATCH proxmox-backup 0/2] ship and track proxmox-enterprise-support-keyring
  2026-07-23 13:05 [PATCH proxmox-backup 0/2] ship and track proxmox-enterprise-support-keyring Friedrich Weber
  2026-07-23 13:05 ` [PATCH proxmox-backup 1/2] d/control: depend on proxmox-enterprise-support-keyring Friedrich Weber
  2026-07-23 13:05 ` [PATCH proxmox-backup 2/2] api: apt: versions: track proxmox-enterprise-support-keyring version Friedrich Weber
@ 2026-07-23 22:00 ` Thomas Lamprecht
  2 siblings, 0 replies; 4+ messages in thread
From: Thomas Lamprecht @ 2026-07-23 22:00 UTC (permalink / raw)
  To: pbs-devel, Friedrich Weber

On Thu, 23 Jul 2026 15:05:51 +0200, Friedrich Weber wrote:
> Proxmox VE >= 9.2 ships the package proxmox-enterprise-support-keyring, which
> contains SSH public keys used by Proxmox enterprise support (inactive by
> default, of course). As of now, the package can also be installed on PBS, but
> is not installed by default.
> 
> With patch 1/2, proxmox-backup-server will depend on
> proxmox-enterprise-support-keyring, so PBS installations will pull in the
> package from now on.
> 
> [...]

Applied, thanks!

[1/2] d/control: depend on proxmox-enterprise-support-keyring
      commit: 289eb93680535e8b888c995ee40756255a024136
[2/2] api: apt: versions: track proxmox-enterprise-support-keyring version
      commit: 3b4548a29cd046f18d9f8a07d46e8ea8171775e3




^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2026-07-23 22:00 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-07-23 13:05 [PATCH proxmox-backup 0/2] ship and track proxmox-enterprise-support-keyring Friedrich Weber
2026-07-23 13:05 ` [PATCH proxmox-backup 1/2] d/control: depend on proxmox-enterprise-support-keyring Friedrich Weber
2026-07-23 13:05 ` [PATCH proxmox-backup 2/2] api: apt: versions: track proxmox-enterprise-support-keyring version Friedrich Weber
2026-07-23 22:00 ` applied: [PATCH proxmox-backup 0/2] ship and track proxmox-enterprise-support-keyring Thomas Lamprecht

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Service provided by Proxmox Server Solutions GmbH | Privacy | Legal