From 2bf3399c3e270230572b7c86fade1c2d119cfed6 Mon Sep 17 00:00:00 2001 From: polyfloyd Date: Sat, 28 Oct 2023 16:44:24 +0200 Subject: [PATCH] common: Never install backports kernel --- roles/common/tasks/debian-backports.yaml | 7 ------- 1 file changed, 7 deletions(-) diff --git a/roles/common/tasks/debian-backports.yaml b/roles/common/tasks/debian-backports.yaml index 928def1..fc6be9b 100644 --- a/roles/common/tasks/debian-backports.yaml +++ b/roles/common/tasks/debian-backports.yaml @@ -9,10 +9,3 @@ notify: apt update - meta: flush_handlers - -- name: Install backports kernel - apt: - name: linux-image-amd64 - state: latest - default_release: "{{ ansible_facts['distribution_release'] }}-backports" - when: ansible_facts['architecture'] == "x86_64" and ansible_facts['distribution_release'] != "bookworm"