[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [XEN PATCH 2/4] automation: Ignore package authentification issue in Jessie container
We can't easily install package on Debian Jessie anymore, the release keys seems to have expired without a way to get new ones. We have these warning: W: GPG error: http://deb.debian.org jessie-updates InRelease: The following signatures were invalid: KEYEXPIRED 1668891673 W: GPG error: http://deb.debian.org jessie Release: The following signatures were invalid: KEYEXPIRED 1668891673 So, from now on, ignore the warning and force the installation of packages that can't be authenticated. Signed-off-by: Anthony PERARD <anthony.perard@xxxxxxxxxx> --- Or, we could just not test on Jessie anymore. --- automation/build/debian/jessie-i386.dockerfile | 2 ++ automation/build/debian/jessie.dockerfile | 2 ++ 2 files changed, 4 insertions(+) diff --git a/automation/build/debian/jessie-i386.dockerfile b/automation/build/debian/jessie-i386.dockerfile index 3f86d91f63..c617b6fbfb 100644 --- a/automation/build/debian/jessie-i386.dockerfile +++ b/automation/build/debian/jessie-i386.dockerfile @@ -13,6 +13,8 @@ ENTRYPOINT ["linux32"] # build depends RUN apt-get update && \ apt-get --quiet --yes install \ + # WARNING! Force installation to ignore expired release key + --force-yes \ build-essential \ zlib1g-dev \ libncurses5-dev \ diff --git a/automation/build/debian/jessie.dockerfile b/automation/build/debian/jessie.dockerfile index 2f19adcad3..8918b26d75 100644 --- a/automation/build/debian/jessie.dockerfile +++ b/automation/build/debian/jessie.dockerfile @@ -11,6 +11,8 @@ WORKDIR /build # build depends RUN apt-get update && \ apt-get --quiet --yes install \ + # WARNING! Force installation to ignore expired release key + --force-yes \ build-essential \ zlib1g-dev \ libncurses5-dev \ -- Anthony PERARD
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |