From bee03691d4810259809390e3a6c87990aba91944 Mon Sep 17 00:00:00 2001 From: Tomislav Plavcic Date: Mon, 30 Dec 2019 16:01:11 +0100 Subject: [PATCH] fix backports repo on jessie in aws image --- tasks/test_prep.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tasks/test_prep.yml b/tasks/test_prep.yml index 9fe300401..b97cfc158 100644 --- a/tasks/test_prep.yml +++ b/tasks/test_prep.yml @@ -21,6 +21,12 @@ mode=0640 owner=root group=root when: ansible_os_family == "Debian" and ansible_distribution_release == "jessie" + - name: fix backports repo on jessie in aws image + file: + path: /etc/apt/sources.list.d/backports.list + state: absent + when: ansible_os_family == "Debian" and ansible_distribution_release == "jessie" + - name: install needed packages for running tests with apt apt: name: "{{ packages }}"