Skip to content

Commit

Permalink
ci: powerpc: Allow unauthenticated packages
Browse files Browse the repository at this point in the history
Reading package lists...
W: GPG error: http://archive.debian.org/debian jessie Release: The following signatures were invalid: KEYEXPIRED 1587841717  KEYEXPIRED 1587841717  KEYEXPIRED 1587841717  KEYEXPIRED 1587841717  KEYEXPIRED 1587841717
W: The repository 'http://archive.debian.org/debian jessie Release' is not signed.
+ mkdir -p -m 777 /qemu/powerpc
+ cd /qemu/powerpc
+ apt-get -d --no-install-recommends download busybox:powerpc dropbear:powerpc libc6:powerpc libgcc1:powerpc libstdc++6:powerpc linux-image-4.9.0-0.bpo.6-powerpc:powerpc ncurses-base zlib1g:powerpc
WARNING: The following packages cannot be authenticated!
  dropbear:powerpc
E: Some packages could not be authenticated
The command '/bin/sh -c /linux-image.sh powerpc' returned a non-zero code: 100

PowerPC seems not to have long term support for powerpc:
https://www.debian.org/releases/jessie/

The problem is that the keys which signed the powerpc packages have
expired so they will always fail package verification. Disabling
signature verification will get around that but has obvious security
concerns.
  • Loading branch information
tblah committed Apr 30, 2020
1 parent 4ad2b63 commit a7d6482
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions docker/linux-image.sh
Expand Up @@ -47,6 +47,7 @@ main() {

# archive.debian.org Release files are expired.
echo "Acquire::Check-Valid-Until false;" | tee -a /etc/apt/apt.conf.d/10-nocheckvalid
echo "APT::Get::AllowUnauthenticated true;" | tee -a /etc/apt/apt.conf.d/10-nocheckvalid

dropbear="dropbear"
;;
Expand Down

0 comments on commit a7d6482

Please sign in to comment.