diff --git a/CHANGELOG.md b/CHANGELOG.md index 5d3ffea2..414c8e5f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -24,6 +24,7 @@ The **patch** part changes incrementally at each release. * evomaintenance: embed version 0.5.0 * opendkim: aligning roles with our conventions, major changes in opendkim-add.sh * apt: Replace mirror.evolix.org by archives.debian.org for jessie-backport +* apt: Ensure jessie-backport from archives.debian.org is accepted * apt: Remove jessie-update suite as it's no longer exists diff --git a/apt/tasks/backports.yml b/apt/tasks/backports.yml index 67b193d4..2432be03 100644 --- a/apt/tasks/backports.yml +++ b/apt/tasks/backports.yml @@ -27,6 +27,14 @@ tags: - apt +- name: Accept archived backuport (jessie) + lineinfile: + dest: '/etc/apt/apt.conf.d/99no-check-valid-until' + line: 'Acquire::Check-Valid-Until no;' + create: yes + state: present + when: when: ansible_distribution_release == "jessie" + - name: Apt update apt: update_cache: yes