From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [212.224.123.68]) by lore.proxmox.com (Postfix) with ESMTPS id 079341FF142 for ; Fri, 22 May 2026 10:34:23 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 7B12919DB; Fri, 22 May 2026 10:34:19 +0200 (CEST) From: Dominik Csapak To: pdm-devel@lists.proxmox.com Subject: [PATCH datacenter-manager v3 4/6] server: serve geojson worldmap Date: Fri, 22 May 2026 10:34:05 +0200 Message-ID: <20260522083412.1223719-10-d.csapak@proxmox.com> X-Mailer: git-send-email 2.47.3 In-Reply-To: <20260522083412.1223719-1-d.csapak@proxmox.com> References: <20260522083412.1223719-1-d.csapak@proxmox.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-SPAM-LEVEL: Spam detection results: 0 AWL 0.050 Adjusted score from AWL reputation of From: address BAYES_00 -1.9 Bayes spam probability is 0 to 1% DMARC_MISSING 0.1 Missing DMARC policy KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record URIBL_BLOCKED 0.001 ADMINISTRATOR NOTICE: The query to URIBL was blocked. See http://wiki.apache.org/spamassassin/DnsBlocklists#dnsbl-block for more information. [main.rs] Message-ID-Hash: UTZQWUVBXTPJWWT44QHRJX63RBKDPHOY X-Message-ID-Hash: UTZQWUVBXTPJWWT44QHRJX63RBKDPHOY X-MailFrom: d.csapak@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 Datacenter Manager development discussion List-Help: List-Owner: List-Post: List-Subscribe: List-Unsubscribe: this will be used by the ui to show a world map with remote information Signed-off-by: Dominik Csapak --- debian/control | 1 + server/src/bin/proxmox-datacenter-api/main.rs | 1 + 2 files changed, 2 insertions(+) diff --git a/debian/control b/debian/control index 154622a2..c0bdb0ae 100644 --- a/debian/control +++ b/debian/control @@ -163,6 +163,7 @@ Depends: libproxmox-acme-plugins, proxmox-datacenter-manager-docs, proxmox-mini-journalreader, proxmox-termproxy, + proxmox-geojson-data, pve-xtermjs, ${misc:Depends}, ${shlibs:Depends}, diff --git a/server/src/bin/proxmox-datacenter-api/main.rs b/server/src/bin/proxmox-datacenter-api/main.rs index 524a4b51..ee146f50 100644 --- a/server/src/bin/proxmox-datacenter-api/main.rs +++ b/server/src/bin/proxmox-datacenter-api/main.rs @@ -168,6 +168,7 @@ async fn run(debug: bool) -> Result<(), Error> { ("xtermjs", "/usr/share/pve-xtermjs"), ("locale", "/usr/share/pdm-i18n"), ("docs", "/usr/share/doc/proxmox-datacenter-manager/html"), + ("geojson", "/usr/share/proxmox-geojson-data"), ]) .formatted_router(&["api2"], &server::api::ROUTER) // FIXME: disabled for testing on pure debian -- 2.47.3