aws / efs-utils

Utilities for Amazon Elastic File System (EFS)
MIT License
285 stars 187 forks source link

CircleCI pipeline debian9 build fails #183

Closed wombelix closed 9 months ago

wombelix commented 10 months ago

Debian 9 "Stretch" entered "Extended Long Term Support" state on 2022-07-01, which is a commercial offering to extend the lifetime another 5 years (https://wiki.debian.org/LTS/Extended).

It's not part of the Debian project, therefore no updates are released anymore and the repository url changed from deb.debian.org/security.debian.org to archive.debian.org.

debian:stretch
Last pushed a year ago (Jun 23, 2022 at 3:39 am)
https://hub.docker.com/layers/library/debian/stretch/images/sha256-16ee3e11da473f6565ef94a715f1a38b3079e0664913be78869c336a71cb6085?context=explore

To solve it we could either remove it from the build or rewrite the sources.list file a before installing packages:

sed -i 's/deb.debian.org/archive.debian.org/g' /etc/apt/sources.list
sed -i 's/security.debian.org/archive.debian.org/g' /etc/apt/sources.list
sed -i '/stretch-updates/d' /etc/apt/sources.list