From 8fd7134c67a92502f785909df174062491f1451f Mon Sep 17 00:00:00 2001 From: Dietmar Maurer Date: Mon, 9 Sep 2013 11:36:22 +0200 Subject: [PATCH] use correct changelog urls for pve repositories. We always use a changelog file for each package (not source package). --- PVE/API2/APT.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PVE/API2/APT.pm b/PVE/API2/APT.pm index a4660489..5bd4da8d 100644 --- a/PVE/API2/APT.pm +++ b/PVE/API2/APT.pm @@ -99,10 +99,10 @@ my $get_changelog_url =sub { } elsif ($origin eq 'Proxmox') { if ($component eq 'pve-enterprise') { $changelog_url = "https://enterprise.proxmox.com/debian/$base/" . - "${srcpkg}_${pkgver}.changelog"; + "${pkgname}_${pkgver}.changelog"; } else { $changelog_url = "http://download.proxmox.com/debian/$base/" . - "${srcpkg}_${pkgver}.changelog"; + "${pkgname}_${pkgver}.changelog"; } } }