apt: Ensure jessie-backport from archives.debian.org is accepted

This commit is contained in:
Ludovic Poujol 2019-04-08 16:11:10 +02:00
parent b185012469
commit 48226ff7b6
2 changed files with 9 additions and 0 deletions

View file

@ -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

View file

@ -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