All of lore.kernel.org
 help / color / mirror / Atom feed
From: Anthony PERARD <anthony.perard@citrix.com>
To: <xen-devel@lists.xenproject.org>
Cc: Anthony PERARD <anthony.perard@citrix.com>,
	Doug Goldstein <cardoe@cardoe.com>,
	Stefano Stabellini <sstabellini@kernel.org>
Subject: [XEN PATCH 2/4] automation: Ignore package authentification issue in Jessie container
Date: Wed, 15 Feb 2023 12:02:06 +0000	[thread overview]
Message-ID: <20230215120208.35807-3-anthony.perard@citrix.com> (raw)
In-Reply-To: <20230215120208.35807-1-anthony.perard@citrix.com>

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@citrix.com>
---

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



  parent reply	other threads:[~2023-02-15 12:09 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-02-15 12:02 [XEN PATCH 0/4] automation: Update containers to allow HTTPS access to xenbits Anthony PERARD
2023-02-15 12:02 ` [XEN PATCH 1/4] automation: Remove clang-8 from Debian unstable container Anthony PERARD
2023-02-15 12:26   ` Andrew Cooper
2023-02-15 16:28     ` Anthony PERARD
2023-02-15 16:31       ` Andrew Cooper
2023-02-15 18:15         ` Andrew Cooper
2023-02-16  0:06           ` Stefano Stabellini
2023-02-15 12:02 ` Anthony PERARD [this message]
2023-02-15 12:36   ` [XEN PATCH 2/4] automation: Ignore package authentification issue in Jessie container Andrew Cooper
2023-02-15 16:21     ` Anthony PERARD
2023-02-15 12:02 ` [XEN PATCH 3/4] automation: Remove expired root certificates used to be used by let's encrypt Anthony PERARD
2023-02-15 12:41   ` Andrew Cooper
2023-02-16  0:14     ` Stefano Stabellini
2023-02-16 11:34       ` Anthony PERARD
2023-02-16 20:19         ` Stefano Stabellini
2023-02-15 12:02 ` [XEN PATCH 4/4] automation: Add more aliases in containerize Anthony PERARD
2023-02-15 12:29   ` Andrew Cooper

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20230215120208.35807-3-anthony.perard@citrix.com \
    --to=anthony.perard@citrix.com \
    --cc=cardoe@cardoe.com \
    --cc=sstabellini@kernel.org \
    --cc=xen-devel@lists.xenproject.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.