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 1253E1FF37F for ; Thu, 18 Apr 2024 11:17:57 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id A614417F24; Thu, 18 Apr 2024 11:17:48 +0200 (CEST) From: Alexander Zeidler To: pve-devel@lists.proxmox.com Date: Thu, 18 Apr 2024 11:16:46 +0200 Message-Id: <20240418091650.51366-3-a.zeidler@proxmox.com> X-Mailer: git-send-email 2.39.2 In-Reply-To: <20240418091650.51366-1-a.zeidler@proxmox.com> References: <20240418091650.51366-1-a.zeidler@proxmox.com> MIME-Version: 1.0 X-SPAM-LEVEL: Spam detection results: 0 AWL -0.057 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 POISEN_SPAM_PILL 0.1 Meta: its spam POISEN_SPAM_PILL_1 0.1 random spam to be learned in bayes POISEN_SPAM_PILL_3 0.1 random spam to be learned in bayes SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record Subject: [pve-devel] [PATCH manager 3/7] report: add `apt-cache policy` to list recognized APT sources X-BeenThere: pve-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox VE development discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: Proxmox VE development discussion Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: pve-devel-bounces@lists.proxmox.com Sender: "pve-devel" with their details as well as pinned packages. Omit the "origin" lines, as their value is already visible in the URLs. # apt-cache policy ... Package files: 100 /var/lib/dpkg/status release a=now 500 https://enterprise.proxmox.com/debian/pve bookworm/pve-enterprise amd64 Packages release o=Proxmox,a=stable,n=bookworm,l=Proxmox VE Enterprise Debian Repository,c=pve-enterprise,b=amd64 ... Pinned packages: intel-microcode -> 3.20231114.1~deb12u1 with priority 1234 Signed-off-by: Alexander Zeidler --- Expects applied: report: fix regex of config filenames https://lists.proxmox.com/pipermail/pve-devel/2024-April/063254.html v2: * no changes v1: https://lists.proxmox.com/pipermail/pve-devel/2024-March/062344.html PVE/Report.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/PVE/Report.pm b/PVE/Report.pm index 4588b2da..9b6cd95c 100644 --- a/PVE/Report.pm +++ b/PVE/Report.pm @@ -38,6 +38,7 @@ my $init_report_cmds = sub { 'cat /etc/apt/sources.list', sub { dir2text('/etc/apt/sources.list.d/', '.+\.list') }, sub { dir2text('/etc/apt/sources.list.d/', '.+\.sources') }, + 'apt-cache policy | grep -vP "^ +origin "', 'lscpu', 'pvesh get /cluster/resources --type node --output-format=yaml', ], -- 2.39.2 _______________________________________________ pve-devel mailing list pve-devel@lists.proxmox.com https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel