From bd4e5f194153b92e136d1b422c066064f52402d3 Mon Sep 17 00:00:00 2001 From: "Kenneth Benzie (Benie)" <benie@infektor.net> Date: Sat, 8 Oct 2022 13:55:10 +0100 Subject: [PATCH] Always install fzf from apt on Debian `fzf` is in the `apt` repos for all distros used. --- roles/fzf/tasks/Debian.yaml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/roles/fzf/tasks/Debian.yaml b/roles/fzf/tasks/Debian.yaml index d92d1bc..5ef26cc 100644 --- a/roles/fzf/tasks/Debian.yaml +++ b/roles/fzf/tasks/Debian.yaml @@ -1,12 +1,6 @@ --- - name: install apt package - when: ansible_distribution == "Debian" and - ansible_distribution_version == "unstable" become: true apt: name: fzf state: latest - -- include_tasks: Debian-old.yaml - when: not (ansible_distribution == "Debian" and - ansible_distribution_version == "unstable")